how can you scroll with scripty2??
document.body.scrollTo(300, {
transition: 'easeInOutQuad',
duration: 0.5
});
have also tried with window.scrollTo()
EDIT:
this doesnt work either
$(document.body).scrollTo(300, {
transition: 'easeInOutQuad',
duration: 0.5
});
but in some other code this works fine
this.loader.morph('opacity:1; filter:aplha(opacity=100)', {
transition: 'easeInOutQuad',
duration: 0.5
});
document.bodyis not automatically a scripty element. You need to either turn it into one, IIRC like so:or use
Element.scrollTo: