如何将一个jquery航点动画添加到多个div?
如果我添加此代码“ class .animation”,则它仅适用于一格。
有什么想法吗?
$(".animation").waypoint(function(direction) {
if (direction == "down") {
TweenMax.to(".animation", .9,{y: 0, width: "790px", ease: Power4.easeOut});
TweenMax.to(".animation", 1,{autoAlpha: 1, ease: Power4.easeOut});
} else {
TweenMax.to(".animation", 1,{y: 80,width: 0, autoAlpha: 0, ease: Power4.easeOut});
}
}, {
offset: "60%"
});
答案 0 :(得分:0)
这只是一个猜测,但是如果尝试以下操作,该怎么办。
$(".animation").each(function(){
$(this).waypoint(function(direction){
..code..
});
});