-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·85 lines (55 loc) · 1.87 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StillTest</title>
<meta name="description" content="Просто очередной тестовый сайтик. Made by Rult.">
<meta property="og:title" content="Главная">
<meta property="og:type" content="website">
<meta property="og:site_name" content="StillTest">
<meta property="og:image" content="/resources/logo256.png">
<meta property="og:url" content="/">
<meta property="og:description" content="Здесь был Рульт.">
<link rel="stylesheet" href="/resources/styleadaptive.css">
<link rel="icon" href="/resources/favicon.ico" type="image/x-icon">
<style>
#contentLogo {
filter: none;
-webkit-filter: none;
}
.spanHint {
border-bottom: 1px dashed;
}
</style>
</head>
<body>
<script src="/resources/interfacepack.js"></script>
<div id="content">
<article>
<h2>Приветствую!</h2>
<img src="/resources/aluminum.png" id="contentLogo" class="regularImage" title="DRAW" style="cursor: pointer;">
<p>Вы находитесь на очередном тестовом сайтике.</p>
<div class="contentMainEnd"></div>
</article>
</div>
<script>
var isContentLogoRotated = true;
contentLogo.onclick = function rotateContentLogo() {
if (isContentLogoRotated == true) {
isContentLogoRotated = false;
contentLogo.style.transition = "transform 2.5s cubic-bezier(0.1,0,0.5,1)";
contentLogo.style.transform = "rotate(-1080deg)";
contentLogo.style.cursor = "default";
setTimeout(function() {
contentLogo.style.transition = "transform 0s cubic-bezier(0.1,0,0.5,1)";
contentLogo.style.transform = "rotate(0deg)";
contentLogo.style.cursor = "pointer";
isContentLogoRotated = true;
}, 2501);
}
}
</script>
<script src="/resources/contentadjuster.js"></script>
</body>
</html>