yohood_footer.js
8.09 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/**
* Created by qiujun on 16/7/21.
*/
var is_wechat = false;//是否在微信中
var is_weibo = false;//是否在微博中
var is_ios = false;//是否是ios
var is_android = false;//是否是android
var is_pod = false;
var yohobuy_download_ios = 'https://itunes.apple.com/cn/app/yoho!-you-huo/id490655927?mt=8';
var yohobuy_download_android = 'http://yoho-apps.qiniudn.com/YohoBuy.apk';
var yoho_download_ios = 'https://itunes.apple.com/cn/app/id530419467?ls=1&mt=8';
var yoho_download_android = 'http://yoho-apps.qiniudn.com/Yoho.apk';
var mars_download_ios = 'https://itunes.apple.com/cn/app/id1056487123?mt=8';
var mars_download_android = 'javascript;';
var is_yohobuy = 2;
/**
* 通过iframe的方式试图打开APP,如果能正常打开,会直接切换到APP,并自动阻止a标签的默认行为
* 否则打开对应下载页面
* @param app 对应app的scheme地址
* @param link 对应的下载地址
*/
function openAppOrLink(app, link) {
var ifrSrc;
var ifr;
if (is_android) {
//安卓基本上打不开app,只能打开下载地址。。。
date_start = new Date();
if (!is_wechat && !is_weibo) {
ifrSrc = app;
ifr = document.createElement('iframe');
ifr.style.display = 'none';
ifr.src = ifrSrc;
document.body.appendChild(ifr);
setTimeout(function () {
var date_end = new Date();
/*var p = document.createElement('p');
p.innerHTML = date_end - date_start
document.body.appendChild(p);*/
if (date_end.getTime() - date_start.getTime() < 1300) {
document.location.href = link;
}
document.body.removeChild(ifr);
}, 1000);
}
else {
//document.location.href = weixin;
show_download_msg();
}
}
//ios判断 if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i))
if (is_ios) {
date_start = new Date();
if (check_supperUniversalLink() >= 9) {
if (!is_wechat && !is_weibo) {
if(!is_pod) {
document.location.href = app;
setTimeout(function () {
var date_end = new Date();
if(!is_pod) {
if (date_end.getTime() - date_start.getTime() < 1200) {
document.location.href = link;
}
}
}, 1000);
}
else {
document.location.href = app;
setTimeout(function () {
var date_end = new Date();
if(is_pod) {
//$('.live-app-desc p').eq(0).text(date_end.getTime() - date_start.getTime());
if (date_end.getTime() - date_start.getTime() < 2003) {
document.location.href = link;
}
}
}, 2000);
}
}
else {
show_download_msg();
}
}
else {
//下面是IOS调用的地址,自己根据情况去修改
if (!is_wechat && !is_weibo) {
ifrSrc = app;
ifr = document.createElement('iframe');
ifr.style.display = 'none';
ifr.src = ifrSrc;
document.body.appendChild(ifr);
setTimeout(function () {
var date_end = new Date();
/*var p = document.createElement('p');
p.innerHTML = date_end - date_start
document.body.appendChild(p);*/
//alert(date_end.getTime() - date_start.getTime());
if (date_end.getTime() - date_start.getTime() < 1200) {
document.location.href = link;
}
document.body.removeChild(ifr);
}, 1000);
}
else {
//document.location.href = weixin;
show_download_msg();
}
}
}
}
/**
* 直接打开下载链接
*/
function get_download_link(link) {
document.location.href = link;
}
/**
* 判断是否是ios9以上的系统,9以上系统不能创建iframe,只能直接打开链接
* @returns {boolean}
*/
function check_supperUniversalLink() {
var osversion = navigator.userAgent.match(/iPhone OS (\d*)/);
console.log(osversion && osversion[1]);
return osversion && osversion[1];
/*if (osversion && osversion[1] >= 9) {
return true;
}
return false;*/
}
/**
* 显示对应设备的下载提示
*/
function show_download_msg() {
$('.live-app-download-msg').show();
$('.wx-img1').show();
$('body').css('overflow-y', 'hidden');
if (is_android) {
$('.wx-img3').show();
}
else if (is_ios) {
$('.wx-img2').show();
}
}
$(document).ready(function(){
var agent = navigator.userAgent.toLowerCase();
//判断环境
if (agent.match(/android/i) == 'android') {
is_android = true;
}
else if (agent.match(/(iPhone|ipod|iPad);?/i)) {
is_ios = true;
}
if(page === 1) {
if($('#part_6_2')[0].style.display != 'none') {
page = 2;
}
}
if(location.href.match(/os_version=/i)) {
is_yohobuy = 1;
setTimeout(function(){
get_yohood_data(1,page,1);
},1000);
}
else {
is_yohobuy = 2;
setTimeout(function(){
get_yohood_data(1,page,2);
},1000);
}
if(agent.match(/iPod/i)) {
is_pod = true;
}
if(agent.match(/MicroMessenger/i)) {
is_wechat = true;
}
//alert(agent);
if(agent.match(/Weibo/i)) {
is_weibo = true;
}
if(agent.match(/QQ/i)) {
//is_wechat = true;
}
$('#btn_down_yohobuy').on('click', function () {//点击下载按钮
var download_type = '';
if(!is_wechat && !is_weibo) {
if (is_android) {
download_type = 'android';
//openAppOrLink(app_android, download_android);
get_download_link(yohobuy_download_android);
}
else if (is_ios) {
download_type = 'ios';
get_download_link(yohobuy_download_ios);
}
}
else {
show_download_msg();
}
get_yohood_data(3,page,is_yohobuy,1);
return false;
});
$('#btn_down_yoho').on('click', function () {//点击下载按钮
var download_type = '';
if(!is_wechat && !is_weibo) {
if (is_android) {
download_type = 'android';
get_download_link(yoho_download_android);
}
else if (is_ios) {
download_type = 'ios';
get_download_link(yoho_download_ios);
}
}
else {
show_download_msg();
}
get_yohood_data(3,page,is_yohobuy,2);
return false;
});
$('#btn_down_mars').on('click', function () {//点击下载按钮
var download_type = '';
if(!is_wechat && !is_weibo) {
if (is_android) {
download_type = 'android';
alert('敬请期待');
}
else if (is_ios) {
download_type = 'ios';
get_download_link(mars_download_ios);
}
}
else {
show_download_msg();
}
get_yohood_data(3,page,is_yohobuy,3);
return false;
});
$('#btn_goto_buy').on('click',function(){
var link = $(this)[0].href;
get_yohood_data(5,page,is_yohobuy,link);
});
$('#btn_review').on('click',function(){
get_yohood_data(4,page,is_yohobuy);
});
$('.live-app-download-msg').on('click', function () {//隐藏在浏览器中打开的提示
$(this).hide();
$('body').css('overflow-y', 'scroll');
});
});