-
Notifications
You must be signed in to change notification settings - Fork 966
/
index.html
executable file
·100 lines (97 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>cssinspirationguide - csc inspiration guide online</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="csc inspiration guide online">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<link rel="stylesheet" href="//unpkg.com/vuep/dist/vuep.css">
<link rel="stylesheet" href="//unpkg.com/gitalk/dist/gitalk.css">
<link rel="stylesheet" href="./assets/css/index.css">
<link rel="icon" type="image/x-icon" href="./logo2.png">
<script type="text/javascript" src="https://s9.cnzz.com/z_stat.php?id=1280199803&web_id=1280199803"></script>
<!-- <link rel="stylesheet" href="./assets/css/prism-line-numbers.css"> -->
<style rel="stylesheet">
body > a:nth-child(1):not(.github-corner) {
opacity: 0;
position: fixed;
bottom: -100px;
left: -100px;
right: unset;
top: unset;
}
/* - Loading - */
div#app {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
z-index: 0;
width: 84px;
height: 84px;
border-radius: 10px;
overflow: hidden;
animation: change 2.4s infinite linear;
}
div#app::before {
content: '';
position: absolute;
z-index: -2;
left: -50%;
top: -50%;
width: 200%;
height: 200%;
background-color: #399953;
background-repeat: no-repeat;
background-size: 50% 50%, 50% 50%;
background-position: 0 0, 100% 0, 100% 100%, 0 100%;
background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
animation: rotate 2.4s linear infinite, change 2.4s linear infinite;
}
div#app::after {
content: '';
position: absolute;
z-index: -1;
left: 4px;
top: 4px;
width: calc(100% - 8px);
height: calc(100% - 8px);
background: white;
border-radius: 5px;
animation: change 2.4s infinite linear;
}
@keyframes rotate {
100% {
transform: rotate(1turn);
}
}
@keyframes change {
0%, 25% {
border-radius: 0;
}
35%, 75% {
border-radius: 50%;
}
85%, 100% {
border-radius: 0;
}
}
</style>
</head>
<body>
<div id="app"></div>
<script src="//unpkg.com/[email protected]/dist/axios.min.js"></script>
<script src="./assets/js/md5.js"></script>
<script src="./assets/js/index.js"></script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="./assets/js/search.min.js"></script>
<script src="./assets/js/gittalk.min.js"></script>
<script src="//unpkg.com/vue/dist/vue.min.js"></script>
<script src="//unpkg.com/vuep/dist/vuep.min.js"></script>
<script src="//unpkg.com/[email protected]/components/prism-scss.min.js"></script>
<script src="//unpkg.com/[email protected]/components/prism-pug.min.js"></script>
</body>
</html>