mobile.js
12.5 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
/**
* @h5页面js
* @author:liuyue
* @date:2015-05-20
**/
define('mobile', function(require, exports) {
var $ = require('jquery'),
swipe = require("plugins/swipe"),
share = require("plugins/share"),
common = require("common"),
swiper = require("plugins/idangerous.swiper"),
mlellipsis = require("plugins/mlellipsis");
require("plugins/imgZoom");
exports.common = function() {
var downloadH,
scrollTop;
if ($('.header-download').size() > 0) {
downloadH = $('.header-download').height();
//顶部app下载位置
$(window).on('scroll', function() {
scrollTop = $(window).scrollTop();
if (!$('.search-wrap input').hasClass('show')) {
if (scrollTop >= downloadH) {
$('.header-download').addClass('fix');
$('.header-download-wrap').addClass('show');
} else {
$('.header-download').removeClass('fix');
$('.header-download-wrap').removeClass('show');
}
}
});
//关闭下载
$('.header-download-wrap').on('click', '.tip-close', function() {
$('.header-download-wrap').remove();
});
}
};
exports.index = function() {
var bannerSwiper;
bannerSwiper = new swiper('.slide-box', {
wrapperClass: 'slide-wrap',
slideClass: 'box',
autoplay: 5000,
loop: true,
pagination: '.slide-navigator .dib',
paginationElement: 'a',
autoplayDisableOnInteraction: false
});
if ($('.slide-navigator .dib').find('a').size() <= 1) {
$('.slide-navigator').hide();
}
//频道点击效果
/*$('.channel-list').on('tap', 'li', function() {
$(this).addClass('current').siblings().removeClass('current');
});*/
};
exports.activity = function() {
$('.content-tab').on('click', 'li', function() {
var nowIndex = $(this).index();
$(this).addClass('current').siblings().removeClass('current');
$('.content-main').hide().eq(nowIndex).show();
});
};
exports.brand = function() {
var bannerSwiper;
var getBrand = function() {
var brand = $.trim($("input[type='text']").val());
var template = '<ul class="brand-list cooperation-list clearfix">{li}</ul>';
var noSearchTemplate = '<div class="no-search" style="display:block;"><p>未搜索到“{brand}”的相关品牌</p><a href="javascript:;" class="all_brand"><查看全部品牌</a></div>';
var html = '';
$.ajax({
type: "post",
url: "/brand/getbrand",
data: {
brand: brand
},
dataType: 'json',
success: function(data) {
var brands = data.data;
if (data.code == 200 && brands != "") {
$.each(brands, function(k, v) {
html += '<li><a href="/brand/detail/id/' + v.id + '" title="' + v.name + '"><div class="img-box">' +
'<img src="' + common.getImages(v.logo, '0145x0097', 'blogimg', 'primary') + '" alt="" alt="' + v.name + '"></div>' +
'<p>' + v.name + '</p></a></li>';
});
$(".brand-content").html(template.replace('{li}', html));
} else {
$(".brand-content").html(noSearchTemplate.replace('{brand}', brand));
}
}
});
};
//大banner滑动
if ($('.slide-box').find('.box').size() > 1) {
bannerSwiper = new swiper('.slide-box', {
wrapperClass: 'slide-wrap',
slideClass: 'box',
loop: true,
pagination: '.slide-navigator .dib',
paginationElement: 'a',
autoplay: 5000,
autoplayDisableOnInteraction: false
});
}
//banner只有一张图时不显示小圆点
if ($('.slide-navigator .dib').find('a').size() <= 1) {
$('.slide-navigator').hide();
}
//搜索框获得焦点
$('.search-wrap input').on('focus', function() {
var offsetTop = $('.search-wrap').offset().top;
$('.overlay').addClass('show');
$(this).removeClass('show').addClass('show');
$('body,html').animate({
scrollTop: offsetTop
});
});
$('.search-wrap').find('input').on('keyup', function(event) {
var keycode = event.which;
if (keycode == 13) {
$('.search-wrap input').blur();
}
});
$('.search-btn').on('tap', function() {
$('.search-wrap input').focus().addClass('hasVal');
});
//获取所有品牌
$(".all_brand").live("click", function() {
$("input[type='text']").val("");
getBrand();
});
$('.search-wrap input').on('blur', function() {
var txtInput = $(this);
$('.overlay').removeClass('show');
if (txtInput.val() === '') {
txtInput.removeClass('hasVal');
} else {
txtInput.addClass('hasVal');
};
getBrand();
});
getBrand();
};
exports.scene = function() {
$('.scene-tab').on('tap', 'li', function() {
var nowIndex = $(this).index();
if ($(this).hasClass('disable')) return;
$(this).addClass('current').siblings().removeClass('current');
$('.main-layout').removeClass('current').eq(nowIndex).addClass('current');
});
$('.scene-content').find('.layout-item').each(function() {
$(this).imgZoom();
});
};
exports.detail = function() {
var shareUrl = $(".share").attr("data-link"),
shareCover = $(".share").attr("cover-url"),
detailTitle = $('.detail-title').find('.title'),
detailSubtitle = $('.detail-title').find('.subtitle'),
slideSwiper;
mlellipsis.init();
//多图滑动
if ($('.slide-box').find('.box').size() > 1) {
slideSwiper = new swiper('.slide-box', {
wrapperClass: 'slide-wrap',
slideClass: 'box',
loop: true,
pagination: '.slide-navigator .dib',
paginationElement: 'a',
autoplay: 5000,
autoplayDisableOnInteraction: false
});
}
if ($('.slide-navigator .dib').find('a').size() <= 1) {
$('.slide-navigator').hide();
}
//截字
$('.related-post').find('.content').each(function() {
$(this)[0].mlellipsis(2);
});
//分享
share.init({
shareUrl: shareUrl,
img: shareCover,
sinaText: '【YOHOOD 2015】' + detailTitle.text() + '@YOHO潮流志',
fbTextFunction: function() {
return {
des: '【YOHOOD 2015】' + detailTitle.text(),
name: '【YOHOOD 2015】' + detailTitle.text(),
caption: '【YOHOOD 2015】' + detailTitle.text(),
url: location.href
}
},
tweetText: '【YOHOOD 2015】' + detailTitle.text(),
qqText: '【YOHOOD 2015】' + detailTitle.text() + '#YOHOOD 2015'
});
var videoSize = $("video").size();
var videoPos = 0;
if(videoSize > 0) {
var videoInterval = setInterval(
function() {
$("video").each(function() { //设置视频高度
if($(this)[0].videoHeight > 0) {
$(this).css({"height": Math.floor($(this)[0].videoHeight * (300 / $(this)[0].videoWidth)) });
videoPos++;
}
});
if(videoPos >= videoSize) clearInterval(videoInterval);
}, 20);
}
};
exports.show = function() {
$(".layout-item").bind("click", function(event) {
if ($(this).attr("isopen") == 1) {
$(this).find(".image-box .pic-tip").each(function() {
$(this).css({
display: "none"
});
});
$(this).attr("isopen", 0);
} else {
var imageWidth = $(window).width(),
imageHeight = 320;
$(this).find(".image-box .pic-tip").each(function() {
var style_left = parseInt($(this).attr("x")) / 10000 * imageHeight;
var style_top = parseInt($(this).attr("y")) / 10000 * imageWidth;
$(this).css({
top: style_top,
left: style_left,
display: "block"
});
});
$(this).attr("isopen", 1);
}
});
};
exports.news = function() {
$('select').on('change', function() {
window.location.href = $(this).val();
});
var current_tag = $(".main-layout").attr("current_tag");
var url = current_tag == "" ? "/news/index": "/news/index/tag/"+current_tag;
var prevPage = '<a href="{url}"><span class="iconfont"></span> PREV</a>';
var lastPage = '<a href="{url}" class="next">NEXT <span class="iconfont"></span></a>';
var pageHtml = '<div id="pageContent" style="text-align: center;" class="pagination">'+
'<div class="pagination-inner clearfix" id="img_page" model="default" rel="">{prevPage}{lastPage}</div></div>';
var getPagination = function(page, totalPage) {
if($("#pageContent").size() >0 ) {
return ""
}
if( page - 1 >= 1 ) {
prevPage = prevPage.replace("{url}", url + "/page/" + ((page - 1 ) * 4 - 3));
pageHtml = pageHtml.replace("{prevPage}", prevPage);
}
if(page < totalPage) {
lastPage = lastPage.replace("{url}", url + "/page/"+ (page * 4 + 1) );
pageHtml = pageHtml.replace("{lastPage}", lastPage);
}
if(page < 1) {
pageHtml = '';
}
pageHtml = pageHtml.replace("{prevPage}","").replace("{lastPage}","");
return pageHtml;
}
$(window).bind("scroll",function()
{
var total = $(".main-layout").attr("total");
var ajaxPage = $(".main-layout").attr("page");//ajax请求的page
var total_times = parseInt($(".main-layout").attr("total_times"));
var limit = parseInt($(".main-layout").attr("limit"));
var times = $(".main-layout").attr("times") ? $(".main-layout").attr("times") : 0;
var page = Math.ceil(parseInt(ajaxPage) / (total_times+1));
var totalPage = Math.ceil(total / (limit * (total_times + 1)));
if($(window).scrollTop() >= $(document).height() - $(window).height()- 50 ) {
if(total > limit && times < total_times && page <= totalPage) {
$.ajax
({
type:"get",
url: url +"/page/"+(parseInt(ajaxPage)+1),
success:function(data)
{
var news_page = $(data);
if($(".main-layout").attr("page") != news_page.attr("page") && news_page.html() != "")
{
$(".main-layout").append(news_page.html());
$(".main-layout").attr({
"total":news_page.attr("total"),
"page":news_page.attr("page"),
"times":++times
});
// console.log(news_page.attr("page"));
// console.log("times:" + times);
}
page = Math.ceil(parseInt(news_page.attr("page")) / (total_times+1));//实现页码
// console.log("page:" + page);
// console.log("totalPage:" + totalPage);
if(times == total_times || news_page.html() == "" || page == totalPage)
{
$(".main-layout").append(getPagination(page, totalPage));
}
}
});
} else if(page == totalPage) {
$(".main-layout").append(getPagination(page, totalPage));
}
return false;
}
});
};
});