-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (102 loc) · 3.22 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<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>Reloj de Xurxo | La Hora de Xurxo</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/toggle.css">
</head>
<style type="text/css">
* {
cursor: url(https://cur.cursors-4u.net/user/use-1/use149.ani), url(https://cur.cursors-4u.net/user/use-1/use149.png), auto !important;
}
</style><a href="https://www.cursors-4u.com/cursor/2011/02/06/umbrella-lemming.html" target="_blank"
title="Umbrella Lemming"><img src="https://cur.cursors-4u.net/cursor.png" border="0" alt="Umbrella Lemming"
style="position:absolute; top: 0px; right: 0px;" /></a>
</script>
<link rel="icon" href="https://media.area-gourmet.com/product/reloj-aluminio-25-cm-diametro-800x800.jpg">
<div>
<p id="button-text" class="switch" style="color:#d9ddde; margin-left:6px; margin-top: 45px;">Música </p>
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
<audio id="myaudio">
<source src="./audio/music.mp3" type="audio/mpeg" loop="true">
</audio>
</label>
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
<audio id="myaudio">
<source src="audio/music.mp3" type="audio/mp3" loop="true">
</audio>
</label>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script>
$(document).ready(function () {
var myAudio = document.getElementById("myaudio");
var more = 0;
$('.round').click(function () {
if (more % 2 == 0) {
$(myAudio)[0].play();
more++;
}
else if (more % 2 != 0) {
$(myAudio)[0].pause();
more++;
}
});
});
$(".buton").hover(
function () {
$(this).removeClass("flipInX");
$(this).addClass("swing");
},
function () {
$(this).removeClass("swing");
// $(this).addClass('flipInX')
}
);
</script>
</body>
<a href="https://www.Instagram.com/xurxorguezz_" rel="noreferrer" target="_blank"><i class='fab fa-instagram'></i></a>
<body>
<div id="time">
<div class="circle" style="--crl: #a333a3;">
<div class="dots hr_dot"></div>
<svg>
<circle cx="70" cy="70" r="70"></circle>
<circle cx="70" cy="70" r="70" id="hh"></circle>
</svg>
<div id="hours">00</div>
</div>
<div class="circle" style="--crl: #87dffa;">
<div class="dots min_dot"></div>
<svg>
<circle cx="70" cy="70" r="70"></circle>
<circle cx="70" cy="70" r="70" id="mm"></circle>
</svg>
<div id="minutes">00</div>
</div>
<div class="circle" style="--crl: #c9b163;">
<div class="dots sec_dot"></div>
<svg>
<circle cx="70" cy="70" r="70"></circle>
<circle cx="70" cy="70" r="70" id="ss"></circle>
</svg>
<div id="seconds">00</div>
</div>
<div class="ap">
<div id="ampm">AM
<body>
</div>
</div>
</div>
</div>
<script src="./js/index.js"></script>
<script>src = "./js/script.js"</script>
</body>
</html>