...
|
...
|
@@ -10,6 +10,7 @@ var plusstar = {}, |
|
|
require('../common');
|
|
|
|
|
|
plusstar = {
|
|
|
scrollObj: {},
|
|
|
init: function() {
|
|
|
var that = this,
|
|
|
$liDom,
|
...
|
...
|
@@ -49,6 +50,12 @@ plusstar = { |
|
|
tabNav: function(code) {
|
|
|
var that = this;
|
|
|
|
|
|
if (typeof this.scrollObj[code] === 'undefined') {
|
|
|
// 如果不是第一次点击,回顶部
|
|
|
$(document).scrollTop(0);
|
|
|
this.scrollObj[code] = true;
|
|
|
}
|
|
|
|
|
|
loading.showLoadingMask();
|
|
|
$.ajax({
|
|
|
type: 'GET',
|
...
|
...
|
@@ -71,7 +78,7 @@ plusstar = { |
|
|
loading.hideLoadingMask();
|
|
|
lazyLoad($('img.lazy'));
|
|
|
|
|
|
//处理左右滑动,未加载的图片
|
|
|
// 处理左右滑动,未加载的图片
|
|
|
setTimeout(function() {
|
|
|
$('img.lazy').each(function() {
|
|
|
if ($(this).attr('src') !== $(this).data('original')) {
|
...
|
...
|
|