...
|
...
|
@@ -2,4 +2,50 @@ |
|
|
* 模板页js
|
|
|
* @author: xuqi(qi.xu@yoho.cn)
|
|
|
* @date;2015/4/14
|
|
|
*/ |
|
|
\ No newline at end of file |
|
|
*/
|
|
|
|
|
|
var $ = require('jquery'),
|
|
|
timer = null;
|
|
|
|
|
|
require('lazyload');
|
|
|
|
|
|
/**
|
|
|
* 页面加载初始化
|
|
|
*/
|
|
|
exports.init = function() {
|
|
|
$(function() {
|
|
|
var $navItem = $('#goods-nav .nav-item'),
|
|
|
$goodsContainer = $('#goods-container'),
|
|
|
$goodList = $('#goods-container > div'),
|
|
|
$npc = $goodList.filter('.new-patterns-container'),
|
|
|
$svc = $goodList.filter('.sales-volume-container'),
|
|
|
$pc = $goodList.filter('.price-container');
|
|
|
|
|
|
//img lazyload
|
|
|
$('img.lazy').lazyload({
|
|
|
skip_invisible : false
|
|
|
});
|
|
|
|
|
|
//切换“最新”,“销量”,“价格”,“筛选”
|
|
|
$('#goods-nav').delegate('.nav-item', 'touchstart', function() {
|
|
|
var $cur = $(this);
|
|
|
|
|
|
if ($cur.hasClass('focus')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$navItem.removeClass('focus');
|
|
|
$cur.addClass('focus');
|
|
|
|
|
|
$goodList.addClass('hide');
|
|
|
if ($cur.hasClass('new-patterns-nav')) {
|
|
|
$npc.removeClass('hide');
|
|
|
} else if ($cur.hasClass('sales-volume-nav')) {
|
|
|
$svc.removeClass('hide');
|
|
|
} else if ($cur.hasClass('price-nav')) {
|
|
|
$pc.removeClass('hide');
|
|
|
} else {
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
}; |
|
|
\ No newline at end of file |
...
|
...
|
|