-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (71 loc) · 2.41 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
<!-- saved from url=(0027)http://circulovicioso.club/ -->
<!-- Edit by: wildcapuchino -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Circulo Vicioso Club</title>
<meta name="google-site-verification" content="FEn9Fa_Px1XEZWDYOhXP4DhEgIoigM6ODRp2ES9lRa8">
<style>
@keyframes spinning {
from { transform: rotate(0deg) }
to { transform: rotate(360deg) }
}
.spinhov:hover {
animation-name: spinning;
animation-duration: 1s;
animation-iteration-count: 1;
/* linear | ease | ease-in | ease-out | ease-in-out */
animation-timing-function: ease-in-out;
}
.spinmiercoles {
animation-name: spinning;
animation-duration: 3s;
animation-iteration-count: infinite;
/* linear | ease | ease-in | ease-out | ease-in-out */
animation-timing-function: ease-in-out;
animation-timing-function: linear;
}
.redes-container {
position: relative;
height: 200px;
}
.vertical-center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
</style>
</head>
<body class="vsc-initialized">
<p style="text-align: center;">
<a href="http://circulovicioso.club/foro" target="_self">
<img id="imagen" src="" style="height: 500px; width: 500px;">
</a>
</p>
<div class="redes-container">
<p class="vertical-center">
<a href="https://www.youtube.com/@CirculoVicioso8/streams" target="_self">
<img alt="" src="./img/ytbutton.png" style="width: 150px; height: 150px;">
</a>
<a href="https://www.tiktok.com/@circulovicioso" target="_self">
<img alt="" src="./img/tiktoklogo.png" style="width: 130px; height: 130px;">
</a>
</p>
</div>
<script>
var d = new Date();
var weekday = d.getDay(); // 0 = Domingo, 1 = Lunes, 2 = Martes, etc.
var conejo = document.getElementById("imagen");
if (weekday === 3) { // 3 = Miércoles
document.getElementById("imagen").src = "./img/logo-v2.png";
conejo.classList.add("spinmiercoles");
} else {
document.getElementById("imagen").src = "./img/logo-v2.png";
conejo.classList.add("spinhov");
}
</script>
</body>
</html>