public.js
17.7 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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
/**
* @fileOverview 公共入口模块
* @author:Hbomb(zhouqq@yoho.cn)
* @date:2013-05-7
*/
window.tmp$ = null;
var $ = require('jquery'),
Swiper = require("yoho-idangerous.swiper"),
jsonp = require("yoho-jsonp");
require("lazyload");
$(".lazy").lazyload();
//菜单初始化所使用变量
var menuTmpl = $("#menuItemTmpl").html(),
dataKey = null,
mustache = require("mustache"),
menuTmplVideo = $("#menuItemTmplVideo").html();
$.fn.top = function() {
if (arguments.length > 0) {
$(this).css("top", arguments[0]);
return $(this);
} else {
return parseFloat($(this).css("top").replace("px", ""));
}
};
$.fn.left = function() {
if (arguments.length > 0) {
$(this).css("left", arguments[0]);
return $(this);
} else {
return parseFloat($(this).css("left").replace("px", ""));
}
};
$(".lazy").lazyload();
//扩展jquery=================================================================
$.fn.id = function() {
if (arguments.length > 0) {
$(this).attr("id", arguments[0]);
return $(this);
} else {
return $(this).attr("id");
}
};
//banner========================================================================================================
if ($(".swiper-container").find(".swiper-slide").length > 1) {
var mySwiper = new Swiper('.swiper-container', {
pagination: '.pagination-banner',
loop: true,
autoplay: 5000,
grabCursor: true,
paginationClickable: true,
autoStopPlay: false
});
$('.arrow-left').on('click', function(e) {
e.preventDefault();
mySwiper.swipePrev();
});
$('.arrow-right').on('click', function(e) {
e.preventDefault();
mySwiper.swipeNext();
});
}
//==============================================================================================================
//centerbanner=============================================================================
if($(".swiper-container2")[0]!=null)
{
var bannerSwiper = new Swiper('.swiper-container2', {
pagination: '.pagination-adv',
loop: true,
autoplay: 2000,
autoStopPlay: false,
paginationClickable: true,
onSlideChangeEnd: function() {
bannerSwiper.startAutoplay();
$(".swiper-container2 .lazy").lazyload();
}
});
}
//================================================================================================
$(".getapp").hover(function() {
$(this).find(".bitmap").show();
$("img").lazyload();
}, function() {
$(this).find(".bitmap").hide()
});
$(".li-weixin").hover(function() {
$(this).find(".pop").show();
$(this).find(".pop").find("img").show();
$("img").lazyload();
}, function() {
$(this).find(".pop").hide()
});
$(".getapp").mouseover(function() {
return false;
});
$(".li-weixin").mouseover(function() {
return false;
});
$(".li-weixin").click(function() {
return false;
});
$(".content").click(function() {
$(".bitmap").hide();
$(".pop").hide();
});
//企业滚动效果======================================================================================================
var minMenuHasShow = false;
var minMenuHasDropDown = false;
//小导航是否显示
var isTop = true;
var bigMenuHeight = 220;
//滚动条是否在顶部
$(window).scroll(function() {
var scrollTop = $(this).scrollTop();
if (scrollTop >= bigMenuHeight && minMenuHasShow === false) {
$(".search-input-box").trigger("blur");
$("#maxEnterprise").css({
visibility: "hidden"
});
$("#minEnterprise").css({
"position": "fixed",
"margin-top": "0",
"padding-top": "10px",
"top": 0,
//left:"50%",
"z-index": 99999
}).show();
minMenuHasShow = true;
$(".enterprise-header-fixed").show();
window.isSearching = false;
$(document.body).trigger("click");
} else if (scrollTop < 177 && minMenuHasShow === true) {
$(".search-input-box").trigger("blur");
$("#maxEnterprise").css({
visibility: "visible"
});
$(".enterprise-header-fixed").hide();
$("#minEnterprise").hide();
window.isSearching = false;
minMenuHasShow = false;
//搜索归位
$(document.body).trigger("click");
}
if (scrollTop > 0 && isTop === true) {
$(".return-to-top").stop().animate({
"filter": "alpha(opacity=70)",
"-moz-opacity": "0.7",
opacity: "0.7"
}, 200);
isTop = false;
} else if (scrollTop == 0) {
$(".return-to-top").stop().animate({
"filter": "alpha(opacity=0)",
"-moz-opacity": "0",
opacity: "0"
}, 200);
isTop = true;
}
$(".search-suggest").hide();
});
$(document).bind({
mousemove: function(event) {
var scrollTop = $(this).scrollTop();
var mouseY = event.pageY - scrollTop;
if (mouseY <= 200 && minMenuHasDropDown === false && minMenuHasShow === true) {
minMenuHasDropDown = true;
$("#minEnterprise").animate({
top: 37
}, 500);
} else if (minMenuHasDropDown === true && minMenuHasShow === true && mouseY > 200) {
minMenuHasDropDown = false;
$("#minEnterprise").animate({
top: 0
}, 500);
}
}
});
//===============================================================================================================
if (document.body.scrollTop > 0 && isTop === true) {
$(".return-to-top").animate({
"filter": "alpha(opacity=70)",
"-moz-opacity": "0.7",
opacity: "0.7"
}, 200);
isTop = false;
} else if (document.body.scrollTop == 0) {
$(".return-to-top").animate({
"filter": "alpha(opacity=0)",
"-moz-opacity": "0",
opacity: "0"
}, 200);
isTop = true;
}
//回到顶部按钮======================================================================================================
$(".return-to-top").click(function() {
$("html,body").animate({
scrollTop: 0
}, 300, function() {
$(".return-to-top").animate({
"filter": "alpha(opacity=0)",
"-moz-opacity": "0",
opacity: "0"
}, 200);
});
});
//===============================================================================================================
//子菜单交互========================================================================================================
function createSubMenu(info) {
var data = {};
data.menun = info.menu;
//大菜单名字
data.submenu = info.submenu;
//子菜单名字
}
//================================================================================================================
//子菜单交互========================================================================================================
function createSubMenu(info) {
var data = {};
data.menun = info.menu;
//大菜单名字
data.submenu = info.submenu;
//子菜单名字
}
//================================================================================================================
//=================================================================================================================
/*$(window).bind("resize",function(){
fillDetail();
});*/
//=================================================================================================================
var isIpad = getBrowType().bIsIpad;
window.currentWidth = document.body.clientWidth;
//================================================================================================================
//=================================================================================================================
/*$(window).bind("resize",function(){
fillDetail();
});*/
//=================================================================================================================
var isIpad = getBrowType().bIsIpad;
if (isIpad === true) {
$(".search-loading-icon").hide();
$(".search-area").width($(".search-area").width() - 43);
$(".search-icon").show();
} else {
$(".search-loading-icon").hide();
$(".search-text").show();
}
function getBrowType() {
var info = {};
var sUserAgent = navigator.userAgent.toLowerCase();
info.bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
// info.bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
// info.bIsMidp = sUserAgent.match(/midp/i) == "midp";
// info.bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
// info.bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
// info.bIsAndroid = sUserAgent.match(/android/i) == "android";
// info.bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
// info.bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
return info;
}
//分享按钮位置
if (!isIpad && $(".share").size() > 0) {
var shareOffsetTop = $(".share").offset().top;
var navHeight = $("#minEnterprise").outerHeight();
$(window).scroll(function() {
scrollTop = $(window).scrollTop();
if (shareOffsetTop - scrollTop - navHeight <= 0) {
$(".share").css({
"position": "fixed",
"top": navHeight
});
} else {
$(".share").css({
"position": "absolute",
"top": shareOffsetTop
});
}
});
}
//搜索按钮===========================================================================
var clientWidth = $(window).width();
$(".search-input-box").keypress(function(event) {
var keyCode = event.keyCode;
if (keyCode === 13) {
$("#search-button").trigger("click");
}
});
$("#search-button").click(function() {
if ($.trim($(".search-input-box").val()) !== "") {
document.location = $(this).attr("searchURL") + "?q=" + $(".search-input-box").val();
}
return false;
});
var searchWidth = $(".search-text").width();
$(document.body).click(function() {
var target = $(".search-text");
target.find(".search-input-box").hide();
target.find(".home-search-button").hide();
target.find(".search-text-content").show();
$(".search-text").click(function() {
return false;
});
if (clientWidth <= 768) {
target.parent().removeAttr("style");
target.css({
width: "65px"
});
} else {
target.animate({
width: searchWidth
}, 500);
}
});
$(".search-text").click(function() {
return false;
});
$(".search-text").click(function() {
var clientWidth = document.body.clientWidth,
parent = null;
$(this).find(".search-text-content").hide();
parent = $(this).parent();
if (clientWidth <= 768) {
parent.width(131);
parent.find(".home-search-button").show();
parent.find(".search-input-box").width(80).val("").show();
parent.find(".search-input-box").focus();
$(this).width(120);
} else if (clientWidth >= 924 && clientWidth < 1190) {
parent.width(198);
parent.find(".search-input-box").width(150).val("").show();
$(this).animate({
width: 190
}, 500, function() {
$(this).find(".home-search-button").show();
$(this).find(".search-input-box").focus();
});
} else if (clientWidth >= 1190) {
parent.width(218);
parent.find(".search-input-box").width(150).val("").show();
$(this).animate({
width: 190
}, 500, function() {
$(this).find(".home-search-button").show();
$(this).find(".search-input-box").focus();
});
}
});
//=================================================================================
window.scrollWindow = function() {
if (document.body.clientWidth >= 1190) {
window.tmp$(window).scrollTop(926);
} else if (document.body.clientWidth < 1190 && document.body.clientWidth > 768) {
window.tmp$(window).scrollTop(931);
} else if (document.body.clientWidth <= 768) {
window.tmp$(window).scrollTop(889);
}
};
if ($("#scrollToContent")[0] != null) {
window.scrollWindow();
}
//初始化菜单============================================================================
jsonp({
url: YohoConfig.mainUrl + "/default/default/getnewest",
success: function(tmp) {
var data = tmp.data,
dataKey = null,
mustacheHtml = null,
_html = null;
for (dataKey in data) {
if (dataKey != "video") {
mustacheHtml = mustache.render(menuTmpl, data);
_html = $(".submenu-" + dataKey).html();
$(".submenu-" + dataKey).html(mustacheHtml + _html);
} else {
mustacheHtml = mustache.render(menuTmplVideo, data);
$(".submenu-video").find(".right-content").html(mustacheHtml);
}
}
}
});
//====================================================================================
//格式化碎片发布时间==================================================================
/**
* 设置并格式化时间
*/
function setTime()
{
// 获取客户端的当前时间戳(秒)
var nowTime = Date.parse(new Date()) / 1000;
var sendTime = 0, differTime = 0;
var formattedTime = '';
var homeTime = $(".item-date"),
channelTime = $(".content-item-detail-subchannle"),
pageTime=null;
if (homeTime.length === 0 && channelTime.length > 0) {
pageTime=channelTime;
} else if (homeTime.length > 0 && channelTime.length === 0) {
pageTime=homeTime;
}
pageTime.each(function()
{
/* 判断是否有参数项 */
if (!$(this).attr('_time'))
{
return;
}
/* 内容的发布时间 */
sendTime = parseInt($(this).attr('_time'), 10);
if (!sendTime || sendTime > nowTime)
{
return;
}
/* 当前时间与发布时间的相差时间戳 */
differTime = nowTime - sendTime;
console.log(differTime);
formattedTime=GetTimeDiff(differTime);
// 替换为格式化后显示的时间
var tmpHtml=$(this).html();
$(this).html(tmpHtml+formattedTime);
});
}
setTime();
//获取两个时间点的间隔天数
function GetTimeDiff(differTime) {
// 小于 60 秒
var formattedTime='';
if (differTime < 60)
{
formattedTime = (differTime > 1) ? differTime + 'secs ago' : '1sec ago';
}
// 1分钟 到 1小时
else if (differTime >= 60 && differTime < 3600)
{
formattedTime = (differTime > 120) ? Math.floor(differTime / 60) + 'mins ago' : '1min ago';
}
// 1小时 到 24小时
else if (differTime >= 3600 && differTime < 86400)
{
formattedTime = (differTime > 7200) ? Math.floor(differTime / 3600) + 'hours ago' : '1hour ago';
}
// 1天 到 7天
else if (differTime >= 86400 && differTime < 604800)
{
formattedTime = (differTime > 172800) ? Math.floor(differTime / 86400) + 'days ago' : '1day ago';
}
// 7天 到 4个星期
else if (differTime >= 604800 && differTime < 2592000)
{
formattedTime = (differTime > 1209600) ? Math.floor(differTime / 604800) + 'weeks ago' : '1week ago';
}
// 1个月 到 12个月
else if (differTime >= 2592000 && differTime < 31536000)
{
formattedTime = (differTime > 5184000) ? Math.floor(differTime / 2592000) + 'months ago' : '1month ago';
}
// 1年 到 N年
else
{
formattedTime = (differTime > 63072000) ? Math.floor(differTime / 31536000) + 'years ago' : '1year ago';
}
return formattedTime;
}
function getWeeks(days) {
return Match.floor(days / 7);
}
function formatDate(date) {
var tmp = date.split(' ').reverse();
return tmp.join('-');
}
function setDate() {
var homeTime = $(".item-date");
var channelTime = $(".content-item-detail-subchannle");
if (homeTime.length === 0 && channelTime > 0) {
channelTime.each(function(index, obj) {
var tmpDate = $(this).find("span").text();
var tmpDays = formatDate(tmpDate);
});
} else if (homeTime.length > 0 && channelTime === 0) {
homeTime.each(function(index, obj) {
var tmpDate = $(this).text().substring(4);
var tmpDays = formatDate(tmpDate);
});
}
}
function getDate(days) {
if(days==1){
return ' 1 day ago';
}
else if (days < 7) {
return days +' days ago';
}
else if(days < 14){
return ' 1 week ago';
}
else if (days < 30) {
return Match.floor(days/7) + ' weeks ago';
}else if(days<60){
return '1 month ago';
}
else if(days<365){
return Match.floor(days/30) + ' months ago';
}
else if(days<730){
return ' 1 year ago';
}
else
{
return Match.floor(days/365) + ' years ago';
}
}
//====================================================================================