当触发器被激活时,我尝试使用 Scrolltomagic 滚动部分。
var sceneOptions2 = {duration: 500};
var divfocus = $("div.wrapper section");
当该部分被激活时,它应该上升到页面的顶部。但滚动不工作。
new ScrollScene(sceneOptions2)
.addTo(controller)
.triggerHook("onCenter")
.triggerElement(divfocus[1])
.setTween(TweenMax.to(divfocus[1], 2, {scrollTo:{y:50}, ease:Back.easeOut}));
当它被触发器激活时,如何使该部分进入顶部?
完整代码:http: //jsfiddle.net/thallysondias/14ktjsb7/4/
ps:任何优化我的代码的建议,也许是一种干净的方式