-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (80 loc) · 3.47 KB
/
index.html
File metadata and controls
87 lines (80 loc) · 3.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@400;600&display=swap" rel="stylesheet" />
<!-- Cute favicon -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💕</text></svg>">
<title>💕 Love Uyn ^_^ 💕</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- Cute Logo -->
<div class="cute-logo">
<div class="logo-container">
<span class="logo-heart">💖</span>
<span class="logo-text">Love Uyn</span>
<span class="logo-sparkle">✨</span>
</div>
</div>
<img src="https://i.pinimg.com/originals/ed/35/f8/ed35f861be81be2548e514085fb19385.gif" class="Nyan-Cat" id="nyan-cat" alt="Nyan Cat">
<img src="./style/cloud.png" alt="Cloud 1" class="floating-cloud-1">
<img src="./style/cloud.png" alt="Cloud 2" class="floating-cloud-2">
<img src="./style/cloud.png" alt="Cloud 3" class="floating-cloud-3">
<!-- Corner decorative images -->
<img src="./style/hair.jpeg" alt="Hair decoration" class="corner-image corner-left">
<img src="./style/cute.jpeg" alt="Cute decoration" class="corner-image corner-right">
<div class="key-button" onclick="showRandomMessage(event)">
<span>❤️</span>
</div>
<!-- Love message under the heart -->
<div class="love-message">
💖 Gửi ngàn lời iu thưn tới em bé 💖
</div>
<audio id="popsound">
<source src="./style/pop.mp3" type="audio/mpeg" />
</audio>
<audio id="meosound">
<source src="./style/meow.mp3" type="audio/mpeg" />
</audio>
<audio id="backgroundmusic" loop>
<source src="music/Amee x Obito x Hứa Kim Tuyền Shay Nắnggg Lyrics.mp3" type="audio/mpeg" />
</audio>
<!-- Music Player -->
<div class="music-player" id="musicPlayer">
<div class="player-header">
<div class="song-info">
<div class="song-title" id="songTitle">Shay Nắnggg</div>
<div class="song-artist" id="songArtist">AMEE x OBITO x HỨA KIM TUYỀN</div>
</div>
<div class="player-toggle" onclick="togglePlayer()">
<span id="playerToggleIcon">🎵</span>
</div>
</div>
<div class="player-controls" id="playerControls">
<div class="control-buttons">
<button class="control-btn" onclick="previousSong()" title="Bài trước">⏮️</button>
<button class="control-btn play-pause-btn" onclick="togglePlayPause()" title="Play/Pause">
<span id="playPauseIcon">▶️</span>
</button>
<button class="control-btn" onclick="nextSong()" title="Bài tiếp">⏭️</button>
<button class="control-btn loop-btn" onclick="toggleLoop()" title="Lặp lại" id="loopBtn">🔁</button>
</div>
<div class="progress-container">
<div class="progress-bar" onclick="setProgress(event)">
<div class="progress-fill" id="progressFill"></div>
</div>
<div class="time-display">
<span id="currentTime">0:00</span> / <span id="totalTime">0:00</span>
</div>
</div>
<div class="volume-control">
<span>🔊</span>
<input type="range" class="volume-slider" id="volumeSlider" min="0" max="100" value="30" oninput="setVolume(this.value)">
</div>
</div>
</div>
<script src="./style/script.js"></script>
</body>
</html>