-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (82 loc) · 2.4 KB
/
index.html
File metadata and controls
90 lines (82 loc) · 2.4 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
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
<!doctype html>
<html lang="en">
<head>
<title>Document</title>
<meta charset="utf-8">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"/>
<meta name="format-detection" content="telephone=no, email=no"/>
<link rel="stylesheet" type="text/css" href="circle.css"/>
<style type="text/css">
html, body, p, dl, dt, dd, table, td, th, input, img, form, div, span, ul, ol, li, h1, h2, h3, h4, h5, h6, select, input {
margin: 0;
padding: 0;
font-weight: normal;
}
html{
height:100%;
-webkit-text-size-adjust: none;
-webkit-user-select: none;
overflow: hidden;
}
body {
height:100%;
background: #ffffff;
font-family: "Microsoft Yahei ","Helvetica Neue","Helvetica,Tahoma,sans-serif";
-webkit-tap-highlight-color: rgba(0,0,0,0);
-moz-tap-highlight-color: rgba(0,0,0,0);
-o-tap-highlight-color: rgba(0,0,0,0);
-ms-tap-highlight-color: rgba(0,0,0,0);
tap-highlight-color: rgba(0,0,0,0);
overflow: hidden;
}
a{
text-decoration: none;
}
.content{
width: 7.5rem;
height: 100%;
margin: 0 auto;
font-size: 0.28rem;
color: red;
line-height: 4rem;
text-align: center;
overflow: hidden;
}
</style>
</head>
<body>
<div class="box">
<div class="content">内容已加载!</div>
<div class="lds-css donghua">
<div style="width:100%;height:100%" class="lds-flickr">
<div></div>
<div></div>
</div>
</div>
</div>
</body>
</html>
<script src="../jquery-1.10.1.min.js" type="text/javascript" charset="utf-8"></script>
<script>
/*rem设置设计稿为750*/
(function (doc, win) {
var docEl = doc.documentElement,
resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize',
recalc = function () {
var clientWidth = docEl.clientWidth;
if (!clientWidth) return;
docEl.style.fontSize = 100 * (clientWidth / 750) + 'px';
};
if (!doc.addEventListener) return;
win.addEventListener(resizeEvt, recalc, false);
doc.addEventListener('DOMContentLoaded', recalc, false);
})(document, window);
</script>
<script type="text/javascript">
$(function(){
setTimeout(function(){
$(".donghua").hide();
}, 2000);
})
</script>