star-classroom.js
1.3 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
/**
* 星潮教室
* @author: wsl<shuiling.wang@yoho.cn>
* @date: 2016/4/11
*/
var $ = require('jquery'),
Swiper = require('yoho.iswiper');
var bannerSwiper, collocationSwiper;
if ($('.banner-swiper').find('li').length > 1) {
bannerSwiper = new Swiper('.banner-swiper', {
lazyLoading: true,
lazyLoadingInPrevNext: true,
loop: true,
autoplay: 3000,
autoplayDisableOnInteraction: false,
paginationClickable: true,
slideElement: 'li',
pagination: '.banner-top .pagination-inner'
});
}
if ($('.collocation-swiper').find('li').length > 1) {
collocationSwiper = new Swiper('.collocation-swiper', {
lazyLoading: true,
lazyLoadingInPrevNext: true,
lazyLoadingOnTransitionStart: true,
grabCursor: true,
slidesPerView: 'auto',
slideElement: 'li',
watchSlidesVisibility: true
});
}
if ($('.artice-zan').find('li').length > 0) {
$('.zan-more').show();
}
$('.add-intimacy').on('click', function() {
$('.pop-intimacy').show();
$('.mask').show();
$('body').css({
overflow: 'hidden'
});
});
$('.pop-intimacy .pop-close, .mask').on('click', function() {
$('.pop-intimacy').hide();
$('.mask').hide();
$('body').css({
overflow: 'visible'
});
});