home.js
4.96 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
/**
* 文件功能描述 :首页JS
* 使用方法 :直接use
* author :wei.wang@yoho.cn
* date :2015-4-23
*/
var $ = require("jquery");
require("lazyload");
var Swiper = require("yoho-idangerous.swiper");
var tips=require("yoho-tips");
var box=require("yoho-box");
//pop=============================================================================================
var pop = new Swiper('.swiper-container3', {
loop : true,
autoplay : 5000,
autoStopPlay : false,
paginationClickable : true,
onSlideChangeEnd : function() {
pop.startAutoplay();
$(".swiper-container3 .lazy").lazyload();
}
});
$('.prev-button').bind('click', function(e) {
e.preventDefault();
pop.swipePrev();
});
$('.next-button').bind('click', function(e) {
e.preventDefault();
pop.swipeNext();
});
var popTop = $(".pop-container").offset().top;
var popLeft=$(".pop-container").offset().left;
var limitTop=$(".pager-content-default").offset().top+$(".pager-content-default").height()+2-$(".pop-container").height();
var stopTop=$(".pager-content-default").offset().top-$(".pop-container").height();
var stopLeft=$(".bottom-item-container").offset().left+$(".bottom-item-container").width()-$(".pop-container").width();
console.log(stopLeft);
var isFixed=false;
if(limitTop-popTop>$(".pop-container").height())
{
$(window).scroll(function() {
if ($(document).scrollTop() >= popTop&&isFixed===false&&$(document).scrollTop() < limitTop) {
isFixed=true;
$(".pop-container-bottom").attr("class","pop-container");
$(".pop-container").css({position:"fixed",top:0,left:popLeft});
}
else if($(document).scrollTop() > limitTop){
$(".pop-container").removeAttr("style");
if($(".swiper-container2")[0]!=null){
$(".pop-container").css({"border-top":0});
}
$(".pop-container").attr("class","pop-container-bottom");
isFixed=false;
}
else if(isFixed===true&&$(document).scrollTop() < popTop)
{
isFixed=false;
$(".pop-container").removeAttr("style");
if($(".swiper-container2")[0]!=null){
$(".pop-container").css({"border-top":0});
}
}
});
}
//================================================================================================
//首页碎片交互=================================================================================================
//mulLine.init();
function dealItems() {
var citems = $(".item-text-area");
if (!citems.length) {
alert("返回");
return;
}
var totalLineNum = 7;
// 7 行
var maxTitleStrNum = 45;
// 15个字
var maxDetailStrNum = 22;
// 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);
var itemTitleObj= self.find(".item-title:first");
// 主标题行数
titleLineNum = 1;
if (maxTitleStrNum < itemTitleObj.attr("_title").length) {
titleLineNum = 2;
}
// 副标题行数
subTitleLineNum = 1;
if (maxTitleStrNum < itemTitleObj.next().attr("_title").length) {
subTitleLineNum = 2;
}
// 摘要内容行数
detailLineNum = totalLineNum - titleLineNum - subTitleLineNum;
if ((maxDetailStrNum * detailLineNum) < self.find(".item-detail").attr("_title").length) {
detailStr = self.find(".item-detail").attr("_title").substring(0, maxDetailStrNum * detailLineNum ) + " ...";
self.find(".item-detail").text(detailStr.replace(/[a-zA-Z]+?\s{1}\.\.\.\$/, " ..."));
}
});
citems = null;
}
dealItems();
//=============================================================
//邮件订阅=============================================================================================================
$(".followus-button").click(function(){
if($(".follow-us-input-content input").val()=='')
{
box.alert(tips.getTips("emailEmpty"));
return;
}
if(!tools.IYOHO_isEmail($(".follow-us-input-content input").val()))
{
box.alert(tips.getTips("emailError"));
return;
}
$(".search-suggest").hide();
window.open( '/passport/subscribe/index?email='+$(".follow-us-input-content input").val());
});
$(".followus-input").keydown(function(event){
if(event.keyCode==13)
{
$(".followus-button").trigger("click");
}
});
//===================================================================================================================