star.page.js 1.02 KB
/**
 * 星潮教室首页
 * @author: wsl<shuiling.wang@yoho.cn>
 * @date: 2016/5/31
 */

var $ = require('yoho-jquery'),
    Swiper = require('yoho-swiper'),
    lazyLoad = require('yoho-jquery-lazyload');

lazyLoad($('img.lazy'));

if ($('.banner-swiper .swiper-slide').length > 1) {
    new Swiper('.banner-swiper', {
        lazyLoading: true,
        lazyLoadingInPrevNext: true,
        loop: true,
        autoplay: 3000,
        autoplayDisableOnInteraction: false,
        paginationClickable: true,
        slideElement: 'li',
        pagination: '.banner-top .pagination-inner'
    });
}

if ($('.avatar-swiper .swiper-slide').length > 1) {
    new Swiper('.avatar-swiper', {
        loop: true,
        initialSlide: 3,
        centeredSlides: true,
        lazyLoading: true,
        lazyLoadingInPrevNext: true,
        slidesPerView: 'auto',
        slidesOffsetBefore: '-' + $('.avatar-swiper').find('li').not('.swiper-slide-visible').width() / 2,
        watchSlidesProgress: true,
        watchSlidesVisibility: true
    });
}