admin管理员组文章数量:1345007
I'm using ScrollMagic
for the first time and as far as I got I understood how to trigger my animation based on starting element and duration
Isn't possible to set a end trigger instead of duration?
var smcontroller = new ScrollMagic.Controller();
var smscene1 = new ScrollMagic.Scene({
triggerElement: "#products-box-1",
offset: 200, duration: 1600
})
.setTween(tweencan)
.addIndicators()
.addTo(smcontroller);
I'm using ScrollMagic
for the first time and as far as I got I understood how to trigger my animation based on starting element and duration
Isn't possible to set a end trigger instead of duration?
var smcontroller = new ScrollMagic.Controller();
var smscene1 = new ScrollMagic.Scene({
triggerElement: "#products-box-1",
offset: 200, duration: 1600
})
.setTween(tweencan)
.addIndicators()
.addTo(smcontroller);
Share
Improve this question
edited Aug 5, 2016 at 17:19
Mohammad
21.5k16 gold badges56 silver badges84 bronze badges
asked Aug 5, 2016 at 17:10
al404ITal404IT
1,4184 gold badges25 silver badges58 bronze badges
1
- I think there is no such provision as per the documents. I don't think there is any actual need of it. – Vishal Sharma Commented Aug 6, 2016 at 5:45
3 Answers
Reset to default 8you can set the duration to the length of a certain div.
duration: $("#divid").height()
Referenced from: Scrollmagic duration
The best way I've found is to calculate the number of pixels from the top of the page to that point in the document by getting the heights and offsets of the elements you are trying to align with, and subtracting the pixels to the top of the element that you want to scroll and its height.
For example, if you have a right rail containing a <div class="rail">
that you want to scroll alongside a <container class="content">
and you want the object to scroll down to the bottom of "content":
duration = ($("content").offset().top + $("content").height()) - ($("rail").offset().top + $("rail").height().top);
It seems so simple once you see it, but I racked my brain for a good hour trying to figure out how to do what you want to do before I realized it was this easy.
Very old question, I know but for whoever finds this as I did just to find there was no answer. To have a callback when the scene ends, do the following:
var smcontroller = new ScrollMagic.Controller();
var smscene1 = new ScrollMagic.Scene({
triggerElement: "#products-box-1",
offset: 200, duration: 1600
})
.setTween(tweencan)
.addIndicators()
.addTo(smcontroller);
// Callback for scene ending
smscene1.on('end', () => {
console.log('Callback called amigo!');
});
If you would like to check the cheatsheet, take a look here: https://ihatetomatoes/wp-content/uploads/2016/08/ScrollMagic-CheatsheetV2.pdf
本文标签: javascriptScrollmagic add end triggerStack Overflow
版权声明:本文标题:javascript - Scrollmagic add end trigger - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743755044a2533351.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论