-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (46 loc) · 1.85 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
<!-- *********************************************************************************
Music Player
created by Amit Barman
github : hhtps://github.com/AmitBarman99/
twitter: @imamitbarman99
******************************************************************************** -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>animated custom box design</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- custom animation box design-->
<div class="img"><img id="img" src="https://freepngimg.com/thumb/antenna/24175-8-antenna-photos.png" alt=""></div>
<div class="container">
<div class="box">
<div class="box-two">
<div class="circle-box">
<div class="circle">
<img class="circle1" src="./disk.png" alt="">
</div>
<div class="circle">
<img class="circle2" src="./disk.png" alt="">
</div>
</div>
<canvas id="canvas"></canvas>
<input type="file" id="thefile" accept="audio/*">
<audio id="audio"></audio>
<div class="switch-box">
<div class="switch">
<div class="sw mid" onclick="playPause()">
<span class="icons"><i class="fa fa-play"></i></span>
</div>
</div>
</div>
</div>
<script src="./script.js"></script>
</div>
</div>
</body>
</html>