-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (37 loc) · 1.32 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
<!DOCTYPE HTML>
<head>
<meta charset="utf-8">
<meta name="author" content="Tencent-TGideas">
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>记忆解锁大挑战</title>
<link rel="stylesheet" type="text/css" href="css/base.css">
<link rel="stylesheet" type="text/css" href="css/common.css">
<style>
body{background: #222}
#container{width:100%;height:100%;overflow: hidden;background-image: url('images/bg.jpg');background-size: 100% 100%}
.Deblocking{width: 100%;position: relative;margin-top: 3.2em;}
#part2{display: none;width:100%;height:100%;background: red}
</style>
</head>
<body>
<div id="container">
<div class="Deblocking"></div>
</div>
<script src="js/motion.js"></script>
<script src="js/Deblocking.js"></script>
<script src="js/common.js"></script>
<script>
(function($) {
var opt = {
ele: $('.Deblocking').get(0),
width: $('.Deblocking').width(), // Deblocking wrap width
height: $('.Deblocking').width() // Deblocking wrap height
}
var lock = new Deblocking(opt).init();
})(Zepto)
</script>
</body>
</html>