detail.js 1.18 KB
/**
 *  商品详情
 * @author: liangzhifeng<zhifeng.liang@yoho.cn>
 * @date: 2015/10/20
 */
 var $ = require('jquery'),
    Swiper = require('yoho.iswiper'),
    lazyLoad = require('yoho.lazyload'),
    goodsSwiper;

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

goodsSwiper = new Swiper('.banner-swiper', {
    lazyLoading: true,
    lazyLoadingInPrevNext: true,
    loop: true,
    paginationClickable: true,
    pagination: '.swiper-pagination',
    nextButton: '.swiper-button-next',
    prevButton: '.swiper-button-prev'
});


$('#nav-tab li').on('click',function(){
        if(!$(this).hasClass('focus')){
            
              $('#nav-tab li').each(function(){
                   $(this).removeClass('focus');
              });

              $('#feedback-content .content').each(function(){
                console.log('hello');
                 $(this).addClass('hide');
              });

              $(this).addClass('focus');
              var index = $(this).index();
              $('#feedback-content .content:eq('+index+')').removeClass('hide');
        }
});
// $('#iframe').load(function() {
//     var mainheight = $(this).contents().find('body').height() + 30;
//     $(this).height(mainheight);
// });