Mouse scroll start animation
Hello I need very simple function but can`t find any info for it:
i need on mouse scroll down / up to start function where animations load - is that possible?
Thanks
Hello I need very simple function but can`t find any info for it:
i need on mouse scroll down / up to start function where animations load - is that possible?
Thanks
You can try something like this:
function onMouseWheel(e)
{
if (this.anim.currentFrame == 0)
this.anim.play();
}
document.getElementById('canvas').addEventListener('mousewheel', onMouseWheel.bind(this));
document.getElementById('canvas').addEventListener('DOMMouseScroll', onMouseWheel.bind(this));
Regards,
JC
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.