我正在使用jQuery和touchSwipe插件来上下滚动内容。我有一些数学相关的问题,想看看社区是否可以快速帮助我解决这个问题。
touchSwipe“distance”变量仅返回从零开始的正值,因此当用户向上滑动然后决定向下滑动时问题进入播放,因为距离值从ex:(0 initial,15up,32up)变化,20up,5up,10down,40down)。我创建了4个if语句来捕获所有这些情况。如果陈述,我该如何处理“方向改变”?
touchSwipe:http://labs.skinkers.com/touchSwipe/
向上和向下滑动功能:
var _scrolling=false;
var _prev=0;
$("#list").swipe({
swipeStatus:function(event, phase, direction, distance, fingerCount) {
if(phase=="end"){return false;}
if(phase=="move" && !_scrolling) {
var t = parseInt($("#list").css("top").split('px')[0]);
var s = 0;
if(direction=="up" && (distance-_prev) > 0){
//still moving up
s = t-(distance-_prev);
_prev=distance;
} else if(direction=="up" && (distance-_prev) < 0){
//direction change - moving down
} else if(direction=="down" && (distance-_prev) > 0){
//still moving down
s = t+(distance-_prev);
_prev=distance;
} else if(direction=="down" && (distance-_prev) < 0){
//direction change - moving up
}
_scrolling=true;
$("#list").animate({ top:s }, 70, function() {_scrolling=false;});
}<!--if end-->
}<!--swipeStatus end-->
});
答案 0 :(得分:1)
所以几天之后我就能解决这个问题,修改原来的“swipeStatus”函数,创建一个非常有效的全功能函数来使用touchSwipe jQuery插件滚动绝对区域。
<强>解决方案:强>
function swipeScroll(c,b,pd,f){
$(c).swipe({//c style must be position:absolute;top:0; b style must be position:relative;
swipeStatus:function(event, phase, direction, distance, fingerCount) {
if(phase=="start"){pd=0;}
if(phase=="end"){return false;}
if(phase=="move" && pd!=distance){
var t = parseInt($(c).css("top"),10);
var u = (pd-distance);
if(direction=="up" && t != u){ t+=u; }else if(direction=="down" && t != -u){ t-=u; }
pd=distance;
if(t > 0 || $(b).height() > $(c).height()){t=0;}//top of content
else if(($(b).height()-t) >= $(c).height()){//bottom of content
t=$(b).height()-$(c).height();
if(typeof f != "undefined"){f();}
}
$(c).css("top",t);
}
}
});
}
解释了功能参数:
c:要滚动的绝对内容 b:围绕内容“c”的相对容器 pd:用于存储从前一个滚动移动的距离的变量 f:滚动到达底部时调用的函数
注意:“b”必须具有相对位置,“c”必须具有顶部的绝对位置:0
使用示例:
var distance;
swipeScroll("#list","#body",distance, function() { alert("bottom"); });
<强>研究强>
而不是使用“$(c).css(”top“,t);”我还使用jQuery animate()函数对此进行了测试,以提供平滑的滑动效果,但这实际上使滚动缓慢。动画产生了意想不到的结果,因为“t”有时会在刷得太快时跳过“0”,方向会从“顶部”变为“向下”,导致内容滚动突然跳跃。
答案 1 :(得分:0)
注意:使用
行if (phase == "end") { return false; }
将阻止使用点击事件。因此,如果您需要该事件,则必须删除此行。