-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (53 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Угадай Мелодию</title>
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:300,300i,400,500i,700i&subset=cyrillic" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" style="position: absolute; left: -1200em;">
<filter id="blur">
<feGaussianBlur in="SourceGraphic" stdDeviation="5"></feGaussianBlur>
<feOffset dx="0" dy="0"></feOffset>
<feMerge>
<feMergeNode></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
</svg>
<div class="app">
<div class="timer-wrapper invisible">
<svg xmlns="http://www.w3.org/2000/svg" class="timer" viewBox="0 0 780 780">
<circle
cx="390" cy="390" r="370"
class="timer-line"
style="filter: url(.#blur); transform: rotate(-90deg) scaleY(-1); transform-origin: center"></circle>
</svg>
<div class="timer-value" xmlns="http://www.w3.org/1999/xhtml">
<span class="timer-value-mins">00</span><!--
--><span class="timer-value-dots">:</span><!--
--><span class="timer-value-secs">00</span>
</div>
</div>
<section class="main">
<h2 class="title title--load">Загрузка...</h2>
</section>
<section class="copyright">
Сделано в <a class="copyright-link" href="https://htmlacademy.ru" target="_blank">HTML Academy</a>
</section>
</div>
<template id="templates">
<!-- Проигрыватель -->
<div class="player">
<audio></audio>
<button class="player-control">Play</button>
<div class="player-track">
<span class="player-status"></span>
</div>
</div>
</template>
<script src="js/main.js"></script>
</body>
</html>