-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_zepto.html
70 lines (69 loc) · 2.01 KB
/
test_zepto.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
<!-- htmlbuild:css -->
<link rel="stylesheet" href="styles/main.css">
<!-- endbuild -->
</head>
<body>
<div class="wrap" id="wrap">
<div class="item-1 item">
<div class="bg-left bg"></div>
<div class="bg-right bg"></div>
<h2 class="title-left"></h2>
<h2 class="title-right"></h2>
<p class="words"></p>
<p class="words2"></p>
<span class="knife"></span>
<span class="fork"></span>
<span class="cake-left"></span>
<span class="cake-right"></span>
<span class="arrow"></span>
</div>
<div class="item-2 item">
<div class="bg-left bg"></div>
<div class="bg-right bg"></div>
<h2 class="title-left"></h2>
<h2 class="title-right"></h2>
<span class="cake"></span>
<p class="words2"></p>
<span class="rose"></span>
<span class="text"></span>
<span class="cake2"></span>
<span class="mony"></span>
<a href="javascript:;" class="buy disable"></a>
</div>
<div class="item-3 item">
<div class="bg-left bg"></div>
<div class="bg-right bg"></div>
<h2 class="title-left"></h2>
<h2 class="title-right"></h2>
<span class="cake"></span>
<p class="words"></p>
<span class="litchi"></span>
<span class="text"></span>
<span class="cake2"></span>
<span class="mony"></span>
<a href="javascript:;" class="buy"></a>
</div>
</div>
<!-- htmlbuild:js -->
<script src="scripts/zepto.js"></script>
<script src="scripts/Slider.js"></script>
<script src="scripts/main_zepto.js"></script>
<script src="scripts/stats.min.js"></script>
<script>
var stats = new Stats();
stats.showPanel( 0 );
document.body.appendChild( stats.dom );
function showStats(){
stats.update();
requestAnimationFrame( showStats );
}
showStats();
</script>
<!-- endbuild -->
</body>
</html>