我只能说我测试航点,而且只要我添加第二个功能,第一个功能就不再适用了。那是为什么?
$(document).ready(function() {
$(".black").waypoint(function(){
TweenMax.to(this, 2, {right:"0", ease:Power2.easeInOut})
},{offset:'50%'});
$(".white").waypoint(function(){
TweenMax.to(this, 2, {left:"0", ease:Power2.easeInOut})
},{offset:'50%'});
});
答案 0 :(得分:0)
尝试以下方法。如果日志会多次显示其被调用但TweenMax无法多次执行,我会很好奇。
$(document).ready(function() {
$(".black").waypoint(function(direction){
console.log('BLACK');
TweenMax.to(this, 2, {right:"0", ease:Power2.easeInOut})
},{offset:'50%'});
$(".white").waypoint(function(direction){
console.log('WHITE');
TweenMax.to(this, 2, {left:"0", ease:Power2.easeInOut})
},{offset:'50%'});
});