You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
3.0 KiB
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

(function(){
var all=$.event.props,
len=all.length,
res=[];
while(len--){
var el=all[len];
if(el!='layerX'&&el!='layerY')res.push(el);}
$.event.props=res;}());
tiggerScrollEvent=function(objectId,loadingId,errorId,retryBtnId,nomoreId,newOpts,pauseId){
var opts={
'contentPage':'pageListTest',
'contentData':{'pcount':10},
'scrollTarget':$(window),
'heightOffset':10,
'childSum':$(objectId).children().size(),
'waiting':0,
'maxWaitTime':1000,
'isRunning':false,
'totalPage':-1,
'beforeLoad':function(){
if(this.isRunning){
this.waiting++;
return false;}
this.isRunning=true;
this.contentData.childSize=this.childSum;
if(!$(loadingId).is(":visible"))
$(loadingId).show();
return true;},
'afterLoad':function(elementsLoaded,isFisLoad){
$(loadingId).hide();
$(elementsLoaded).fadeInWithDelay();
this.isRunning=false;
if($(elementsLoaded).length<this.contentData.pcount||this.totalPage==this.childSum){
$(loadingId).remove();
$(objectId).stopScrollPagination();
if(isFisLoad==undefined){
$(nomoreId).fadeIn();
$(nomoreId).delay(1100).fadeOut();}
return true;}
return false;},
'errorHandler':function(status){
$(loadingId).hide();
this.isRunning=false;
$(errorId).fadeIn();
$(objectId).stopScrollPagination();},
'funforarest':function(){
$(pauseId).fadeIn();
$(objectId).stopScrollPagination();
return true;}};
if(newOpts.contentData!=null){
opts.contentData=$.extend(opts.contentData,newOpts.contentData);
newOpts.contentData=undefined;}
opts=$.extend(opts,newOpts);
$(objectId).scrollPagination(opts);
LoadRetry=function(event){
$(objectId).restartScrollPagination();
$(errorId).hide();};
ContinueLoad=function(event){
$(objectId).restartScrollPagination();
$(pauseId).hide();};
$(retryBtnId).bind("click",LoadRetry);
function touchClick(obj, fun) {
/**
* 该方法用于绑定点击事件比一般的click事件反应速度快2倍。
* @author 黄浩明
* @param {对象字面量} obj 要绑定的dom对象
* @param {对象字面量} fun 事件触发的函数
*/
var start_x = 0,
start_y = 0;
obj.addEventListener('touchstart',function(e){
start_x = e.touches[0].clientX;
start_y = e.touches[0].clientY;
document.addEventListener('touchend', touEnd, false);
});
function touEnd(e){
var endX = e.changedTouches[0].clientX;
var endY = e.changedTouches[0].clientY;
if(Math.abs(endX - start_x) < 5 && Math.abs(endY - start_y) < 5) {
fun.call(obj,e);
}
document.removeEventListener('touchend', touEnd, false);
};
}
touchClick(document.querySelectorAll(pauseId)[0], ContinueLoad)
//$(pauseId).bind("click",ContinueLoad);
$.fn.fadeInWithDelay=function(){
var delay=0;
return this.each(function(){
$(this).delay(delay).animate({opacity:1},200);
delay+=100;});};}