我正在使用航点(http://imakewebthings.com/jquery-waypoints/#shortcuts-examples)和greensock(http://www.greensock.com/)在用户不同时触发某些元素的移动视差页面的级别。
function mover(speed, targetx, targety) {
TweenMax.to($(".four"), speed, {x:targetx, y:targety});
console.log("waypoint reached");
alert("Down")
}
被调用:
$(".three").waypoint(mover($(".four"), 1, 32, 32));
但是,javascript 控制台不断给我这个消息(尽管一切正常,视觉上)
Uncaught Error: jQuery Waypoints needs a callback function or handler option. jquery.js:4
x.extend.error jquery.js:4
$.fn.(anonymous function) waypoints.js:360
(anonymous function) scroll.js:15
c jquery.js:4
p.fireWith jquery.js:4
x.extend.ready jquery.js:4
q
我试过返回“true”,但错误并没有消失。如何将回调函数或处理程序选项集成到我的函数中?