-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (74 loc) · 3.32 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="js/manager.js"></script>
<script src="js/playlist.js"></script>
<title>Nepali FM Player</title>
</head>
<body>
<div class="topnav">
<a class="active" href="/">Home</a>
<a href="/tabs/blog/">News</a>
<a href="/tabs/projects.html">Projects</a>
<a href="/tabs/links.html">Links</a>
</div>
<div class="wrapper">
<div class="play-wrapper">
<center><img id="playing" class="cover" src="img/onair.jpg" alt="Playing"></center>
<audio id="fm" preload="auto" class="music" controls autoplay>
Your browser does not support the audio tag.
</audio>
<div class="detail">
<div class="info">
<div class="name">Nepali FM Radio</div>
<div class="singer"></div>
</div>
<div id="myaudio" class="controls">
<button class="ply-btn"><i class="fas fa-play"></i></button>
<div class="progressBar"><span class="progress"></span></div>
<div class="time"><span class="Ctime">0:00</span>/<span class="Ttime">0.00</span></div>
<br>
<button class="noVol"><i class="fas fa-volume-up"></i></button>
<div class="vol"><span class="nowVol"></span></div>
</div>
</div>
</div>
<div class="mode">
<span class="preSongBtn"><i class='fas fa-backward'></i></span>
<span class="nextSongBtn"><i class="fas fa-forward"></i></span>
<span class="playMode"><i class="fas fa-list"></i></span>
</div>
<div class="list">
<ul class="songContainer"></ul>
</div>
<div class="footer">
made with ♥ by khumnath
<button class="alert"><img src="img/info.png" alt="about"></button>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
let custom_button = document.querySelector(".alert");
custom_button.addEventListener('click', function () {
Swal.fire({
title: "<strong>Nepali Fm Player</strong>",
icon: "info",
html: `this player is created by khumnath<br>
<a href="https://khumnath.com.np">khumnath.com.np</a><br>
<br>
visit project link <a href="https://github.com/khumnath/nepali-fm-player"><b>here</b></a> for suggestions or help to improve player.`,
showCloseButton: true,
focusConfirm: false,
confirmButtonText: "close",
});
});
</script>
</div>
</div>
</body>
</html>