public.js
10.1 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
/**
* @fileOverview 公共入口模块
* @author:Hbomb(zhouqq@yoho.cn)
* @date:2013-05-7
*/
window.tmp$=null;
var $ = require('jquery');
window.tmp$=$;
var Swiper=require("yoho.swiper");
require('./plugin/lazyloadImage');
$(".lazy").lazyload();
$.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",""));
}
};
$.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();
});
}
//==============================================================================================================
$(".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;
});
$("#maxEnterprise").click(function(){$(".bitmap").hide();$(".pop").hide();});
$("#minEnterprise").click(function(){$(".bitmap").hide();$(".pop").hide();});
$(".content").click(function(){$(".bitmap").hide();$(".pop").hide();});
//企业滚动效果======================================================================================================
var minMenuHasShow=false;//小导航是否显示
var isTop=true;//滚动条是否在顶部
$(window).scroll(function(){
var scrollTop=$(this).scrollTop();
if(scrollTop>=177&&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;
$(".search-input-box").hide();
$(".home-search-button").hide();
window.isSearching=false;
$(".search-text").width(73);
$(".search-text").find(".search-text-content").html("Search...");
$(".search-input-box").val("").hide().trigger("blur");
$(".search-area").find(".icons").show();
$(".home-search-button").hide();
window.isSearching=false;
}
else if(scrollTop<177&&minMenuHasShow===true)
{
$(".search-input-box").trigger("blur");
$("#maxEnterprise").css({visibility:"visible"});
$("#minEnterprise").hide();
$(".search-input-box").hide();
$(".home-search-button").hide();
window.isSearching=false;
minMenuHasShow=false;
//搜索归位
$(".search-text").width(73);
$(".search-text").find(".search-text-content").html("Search...");
$(".search-input-box").val("").hide().trigger("blur");
$(".search-area").find(".icons").show();
$(".home-search-button").hide();
window.isSearching=false;
}
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();
});
//===============================================================================================================
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);
});
});
//===============================================================================================================
//子菜单交互========================================================================================================
/*$.ajax({
url:"",
cache:false,
success:function(data){
var data=data.data;
}
});*/
function createSubMenu(info){
var data={};
data.menun=info.menu;//大菜单名字
data.submenu=info.submenu;//子菜单名字
}
//================================================================================================================
//频道页、首页碎片交互=================================================================================================
//mulLine.init();
function dealItems()
{
var citems=$(".content-item,.content-item-without-border");
if (!citems.length)
{
return;
}
var totalLineNum = 7; // 7 行
var maxTitleStrNum = 45; // 15个字
var maxDetailStrNum = 66; // 22个字
if (document.body.clientWidth<1190)
{
totalLineNum = 6; // 6 行
maxTitleStrNum = 39; // 13个字
maxDetailStrNum = 54; // 18个字
}
var titleLineNum = 0;
var subTitleLineNum = 0;
var detailLineNum = 0;
var detailStr = "";
var self = null;
citems.each(function()
{
self=$(this);
// 主标题行数
titleLineNum = 1;
if ( maxTitleStrNum < parseInt(self.find(".a-title").attr('len'), 10) )
{
titleLineNum = 2;
}
// 副标题行数
subTitleLineNum = 1;
if ( maxTitleStrNum < parseInt(self.find(".a-subtitle").attr('len'), 10) )
{
subTitleLineNum = 2;
}
// 摘要内容行数
detailLineNum = totalLineNum - titleLineNum - subTitleLineNum;
if ( (maxDetailStrNum * detailLineNum) < parseInt(self.find(".a-detail").attr('len'), 10) )
{
//self.find(".a-detail").mlellipsis(detailLineNum, "detail");
detailStr = self.find(".a-detail").attr("_title").substring(0, maxDetailStrNum * detailLineNum / 3) + " ...";
self.find(".a-detail").text( detailStr.replace(/[a-zA-Z]+?\s{1}\.\.\.\B/, " ...") );
}
});
citems = null;
}
// function fillDetail()
// {
// var citems=$(".content-item");
// if(citems.length>0)
// {
// citems.each(function(index,obj){
// var self=$(obj);
// self.find(".a-detail").fillText("detail");
//
// });
// }
// }
$(function(){
dealItems();
});
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});
}
});
}
window.scrollWindow=function()
{
if(document.body.clientWidth>=1190)
{
//document.body.scrollTop=850;
window.tmp$(window).scrollTop(850);
}
else if(document.body.clientWidth<1190&&document.body.clientWidth>768)
{
window.tmp$(window).scrollTop(700);
}
else if(document.body.clientWidth<=768)
{
window.tmp$(window).scrollTop(600);
}
};