-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinlanddiscount.html
105 lines (101 loc) · 4.14 KB
/
inlanddiscount.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
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<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/less" href="css/base.less">
<link rel="stylesheet/less" href="css/inlanddiscount.less">
<script src="js/less.js"></script>
</head>
<body>
<header id="header" class="header">
<div id="ctl00_headerApp" class="head">
<div class="back">
<a href="index.html" class="icon-back"></a>
</div>
<h1>
国内折扣
</h1>
<div class="home">
<a href="http://m.manmanbuy.com/?o=download" onclick="trackEvent('header部下载');" class="icon-app"></a>
</div>
</div>
</header>
<main id="recommen-product">
<div class="inland-discount-list cu-friend">
</div>
<div class="loading">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
<div class="bar4"></div>
<div class="bar5"></div>
<div class="bar6"></div>
<div class="bar7"></div>
<div class="bar8"></div>
</div>
</main>
<footer id="ctl00_foot">
<div class="foot_top">
<a href="login.aspx.htm">登录</a>
<a href="login.aspx.htm">注册</a>
<a href="#" style="width: 40%; border: 0;">
<img src="http://www.zuyushop.com/wap/images/top.jpg" width="15" height="15">返回顶部</a>
</div>
<div class="footer">
<p>
<a href="javascript:if(confirm(%27http://m.manmanbuy.com/download/ \n\nThis file was not retrieved by Teleport Ultra, because it was unavailable, or its retrieval was aborted, or the project was stopped too soon. \n\nDo you want to open it from the server?%27))window.location=%27http://m.manmanbuy.com/download/%27"
onclick="trackEvent('footer下载');" style="color: Red;">手机APP下载</a> <a href="index.html" tppabs="http://m.manmanbuy.com/">
慢慢买手机版</a> -- 掌上比价平台</p>
<p>
m.manmanbuy.com
<img src="https://z11.cnzz.com/stat.htm-id=1256699064&r=&iw=1&showp=0x0&lg=undefined&cnzz_eid=none&p=http---m.manmanbuy.com-&rnd=453668140.gif" width="0" height="0">
</p>
</div>
</footer>
<script id="productList" type="text/html">
<ul>
{{each result as value i}}
<li class="border-img">
<a href="discount.html?productid={{value.productId}}" title="《皮囊》 19.9元">
<div class="img">{{#value.productImg}}</div>
<div class="title">{{value.productName}}</div>
<div class="subtit">{{value.productPrice}}</div>
<div class="info">
<div class="mall">{{value.productFrom}} | {{value.productTime}}</div>
</div>
</a>
</li>
{{/each}}
</ul>
</script>
<script src="js/template.js"></script>
<script src="js/jquery-1.12.3.min.js"></script>
<script>
(function($) {
$.getUrlParam = function(name) {
var reg = new RegExp("(^|&)" +
name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]);
return null;
}
})(jQuery);
</script>
<script>
var count = 0;
function rotate() {
var elem2 = document.querySelector('.loading');
elem2.style.MozTransform = 'scale(0.5) rotate(' + count + 'deg)';
elem2.style.WebkitTransform = 'scale(0.5) rotate(' + count + 'deg)';
if (count == 360) {
count = 0
}
count += 45;
window.setTimeout(rotate, 100);
}
window.setTimeout(rotate, 100);
</script>
<script src="js/inlanddiscount.js"></script>
</body>
</html>