...
|
...
|
@@ -12,28 +12,28 @@ var product = require('./index/product'); |
|
|
var $shopIntro = $('.shop-intro'),
|
|
|
$shopCollect = $('.shop-collect'),
|
|
|
|
|
|
// $sliderLeft = $('.slider-left'),
|
|
|
$sliderLeft = $('.slider-left'),
|
|
|
$allGoods = $('.all-goods'),
|
|
|
$fixedArea = $allGoods.find('.fixed-area'),
|
|
|
fixedAreaTop = $fixedArea.offset() ? $fixedArea.offset().top : 0;
|
|
|
|
|
|
// Pjax
|
|
|
// require('yoho-pjax');
|
|
|
require('yoho-jquery-pjax');
|
|
|
|
|
|
require('../common');
|
|
|
require('../plugins/filter');
|
|
|
require('../plugins/sort-pager');
|
|
|
|
|
|
// require('../common/slider');
|
|
|
require('../plugins/slider');
|
|
|
// require('../product/list');
|
|
|
|
|
|
product.init(4);
|
|
|
|
|
|
lazyLoad($('img.lazy'));
|
|
|
|
|
|
// if ($sliderLeft.length) {
|
|
|
// $sliderLeft.slider();
|
|
|
// }
|
|
|
if ($sliderLeft.length) {
|
|
|
$sliderLeft.slider();
|
|
|
}
|
|
|
|
|
|
$shopIntro.on('click', function() {
|
|
|
$('.pop-shop-intro').show();
|
...
|
...
|
@@ -101,25 +101,25 @@ if (window.cookie('needColloect') * 1 === 1 && window.getUid()) { |
|
|
}
|
|
|
|
|
|
// 全部商品使用 pjax 翻页
|
|
|
// $allGoods.pjax('a.pjax', '.goods-wrap', {
|
|
|
// timeout: 5000,
|
|
|
// scrollTo: false // 默认滚动没有动画,禁止掉
|
|
|
// }).on('pjax:end', function() {
|
|
|
// product.init(4);
|
|
|
// lazyLoad($('img.lazy'));
|
|
|
|
|
|
// $fixedArea = $allGoods.find('.fixed-area'); // 翻页后 fixed-area 区域有变化,需要更新选择器
|
|
|
|
|
|
// // 分页后移动到全部商品
|
|
|
// $('html, body').animate({
|
|
|
// scrollTop: $allGoods.offset().top - 30
|
|
|
// });
|
|
|
// }).on('click', '.menu-list li', function() {
|
|
|
// var $this = $(this);
|
|
|
|
|
|
// $this.siblings().removeClass('on');
|
|
|
// $this.addClass('on');
|
|
|
// });
|
|
|
$allGoods.pjax('a.pjax', '.goods-wrap', {
|
|
|
timeout: 5000,
|
|
|
scrollTo: false // 默认滚动没有动画,禁止掉
|
|
|
}).on('pjax:end', function() {
|
|
|
product.init(4);
|
|
|
lazyLoad($('img.lazy'));
|
|
|
|
|
|
$fixedArea = $allGoods.find('.fixed-area'); // 翻页后 fixed-area 区域有变化,需要更新选择器
|
|
|
|
|
|
// 分页后移动到全部商品
|
|
|
$('html, body').animate({
|
|
|
scrollTop: $allGoods.offset().top - 30
|
|
|
});
|
|
|
}).on('click', '.menu-list li', function() {
|
|
|
var $this = $(this);
|
|
|
|
|
|
$this.siblings().removeClass('on');
|
|
|
$this.addClass('on');
|
|
|
});
|
|
|
|
|
|
$(window).on('scroll', function() {
|
|
|
var scrollTop = $(this).scrollTop();
|
...
|
...
|
|