admin管理员组文章数量:1347208
I am using lootive scroll () to create a smooth scroll effect.
I am trying to understand the events and calls they mention in the docs (see above git url).
Example HTML:
<div data-scroll data-scroll-repeat data-scroll-speed="1" data-scroll-call="testEvent1" class="block" id="block1">
block 1
</div>
<div data-scroll data-scroll-repeat data-scroll-speed="1" data-scroll-call="testEvent2" class="block" id="block2">
block 2
</div>
Example JS:
scroll.on('call', func => {
console.log("block1 triggered");
});
This works and the consol log is fired but how can I separate "testEvent" 1 and "testEvent2" to fire separately?
Thank you!
I am using lootive scroll (https://github./lootivemtl/lootive-scroll) to create a smooth scroll effect.
I am trying to understand the events and calls they mention in the docs (see above git url).
Example HTML:
<div data-scroll data-scroll-repeat data-scroll-speed="1" data-scroll-call="testEvent1" class="block" id="block1">
block 1
</div>
<div data-scroll data-scroll-repeat data-scroll-speed="1" data-scroll-call="testEvent2" class="block" id="block2">
block 2
</div>
Example JS:
scroll.on('call', func => {
console.log("block1 triggered");
});
This works and the consol log is fired but how can I separate "testEvent" 1 and "testEvent2" to fire separately?
Thank you!
Share Improve this question asked Mar 21, 2020 at 11:29 Kablooey MonsterKablooey Monster 1701 gold badge1 silver badge10 bronze badges3 Answers
Reset to default 4For anyone who this may help, below is the approach I'm currently using to good effect.
//check object is in view
function checkVisible( elm, eval ) {
eval = eval || "object visible";
var viewportHeight = $(window).height(), // Viewport Height
scrolltop = $(window).scrollTop(), // Scroll Top
y = $(elm).offset().top,
elementHeight = $(elm).height();
if (eval == "object visible") return ((y < (viewportHeight + scrolltop)) && (y > (scrolltop - elementHeight)));
if (eval == "above") return ((y < (viewportHeight + scrolltop)));
}
Grateful for finding the above code in this post: Call function on scroll only once
I then used it like this in my project:
scroll.on('call', func => {
if (checkVisible($('#myID1'))) {
//do something when myID1 is in view
console.log("test myID1");
} else if (checkVisible($('#myID2'))) {
//do something when myID2 is in view
console.log("test myID2");
} else {
// do nothing
}
});
Might help someone. Good luck!
The returned data is accessible via callback, so
scroll.on('call', (obj) => {
console.log(obj);
});
will return testEvent1
(or testEvent2
) in your case.
scroll.on('call', func => {
this[func]();
});
Works like a charm.
The answer @matveimug gave also works, but does not trigger an actual function, instead it passes the call as an argument.
If you want to know the element that triggered the function, you can do so like this:
scroll.on('call', (func, args, obj) => {
this[func]();
console.log(args);
console.log(obj.id);
});
本文标签: javascriptEvents and Calls using Locomotive Scroll JSStack Overflow
版权声明:本文标题:javascript - Events and Calls using Locomotive Scroll JS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743833940a2547038.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论