-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnn.html
34 lines (29 loc) · 986 Bytes
/
nn.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
<!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">
<link rel="stylesheet" href="https://opensource.apple.com/source/WebCore/WebCore-1889.1/css/mediaControls.css.auto.html">
<title>Document</title>
<style>
audio::-webkit-media-controls-panel {
/*background-color: pink;*/
background-image: url('https://bachlongmobile.com/bnews/wp-content/uploads/2020/07/279626d7a06309ce3.jpg');
background-position-y: 180%;
color: #000;
}
audio {
height: 20px;
}
audio::-webkit-media-controls-play-button {
display: none;
}
</style>
</head>
<body>
<audio controls="">
<source src="http://www.sousound.com/music/healing/healing_01.mp3" type="audio/mpeg">
</audio>
</body>
</html>