你有一个水平div,上面有我幻灯片放映的缩略图。
如果激活spinAreaDiv.scrollTo(bullet.getPosition().x);
,则活动图像会发生变化。这工作正常。
让Fx.Scroll对此进行处理的正确语法是什么?
new Fx.Scroll(spinAreaDiv, {duration: 500}).toElement(bullet.getPosition().x);
给了我“无法调用方法'getPosition'的null”。
我做错了什么? 感谢
(使用mootools 1.3.2)
答案 0 :(得分:0)
这应该有效:
scrollEff = new Fx.Scroll(spinAreaDiv, {wait: false,duration: 1000,
offset: {'x': -3, 'y': 0},
transition: Fx.Transitions.Quad.easeInOut
});
scrollEff.toElement(bullet);