-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·52 lines (45 loc) · 1.56 KB
/
index.html
File metadata and controls
executable file
·52 lines (45 loc) · 1.56 KB
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
<!DOCTYPE html>
<html >
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1, user-scalable=no" name="viewport">
<meta name="keywords" content="轮子工厂,web,前端,vue,js,javascript,组件,插件,jquery,ui,ui框架,angular,angularjs,css3,html5">
<meta name="description" content="轮子工厂是一个分享交流学习web前端插件的网站。包括vue组件,angularjs组件,javascript原生插件,jquery插件,以及分享流行的UI框架。" />
<link rel="shortcut icon" href="static/img/wficon.png">
<title>轮子工厂 - web前端组件分享,vue,angularjs,jquery</title>
<style type="text/css">
.loading{
font-size: 40px;
font-family: Roboto, Verdana, sans-serif;
position:fixed;left:50%;top:50%;
margin-left: -100px;
margin-top: -30px;
color: #f35626;
background-image: -webkit-linear-gradient(92deg,#f35626,#feab3a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-animation: hue 5s infinite linear;
text-align: center;
}
@-webkit-keyframes hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}
#app{
width:100%;
}
</style>
</head>
<body>
<h1 style="display: none;">轮子工厂,web,前端,vue,js,javascript,组件,插件,jquery,ui,ui框架,angular,angularjs,css3,html5</h1>
<div id="app">
<div class="loading">Loading...</div>
</div>
<!-- built files will be auto injected -->
</body>
</html>
`