You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The keyboard navigation seems to break when applying multiple animate-build elements with the same -build number. Basically having 2 lines of text fly in from each side at the same time will temporarily disable advancing to the next section (but scrolling a bit with the mousewheel re-enables it) eg.
<p class="animate-build" data-build="1" data-animation="fly-in-left">Fly in from left at the same time</p> <p class="animate-build" data-build="1" data-animation="fly-in-right">Fly in from right at the same time</p>
I guess it's to do with the build array set up and this function trying to advance the slide: getScrollpoint(2);
Changing getScrollpoint(3) and putting in empty animate-build steps works but there's probably a better way. Could I use Scrollorama directly to trigger multiple animations per build step instead? Any help would be much appreciated.
Also, the content on the next slide will flash visible as you scroll down before it's animation starts. Any ideas?
Thanks
The text was updated successfully, but these errors were encountered:
I haven't set up scrolldeck to do multiple animation per advance. I'm currently working on a new version of scrollorama, so perhaps after that I'll update scrolldeck with that feature.
Hi John,
The keyboard navigation seems to break when applying multiple
animate-build
elements with the same-build
number. Basically having 2 lines of text fly in from each side at the same time will temporarily disable advancing to the next section (but scrolling a bit with the mousewheel re-enables it) eg.<p class="animate-build" data-build="1" data-animation="fly-in-left">Fly in from left at the same time</p>
<p class="animate-build" data-build="1" data-animation="fly-in-right">Fly in from right at the same time</p>
Here's an example: http://flightwall.net/scrolldeck-issue
I guess it's to do with the build array set up and this function trying to advance the slide:
getScrollpoint(2);
Changing
getScrollpoint(3)
and putting in empty animate-build steps works but there's probably a better way. Could I use Scrollorama directly to trigger multiple animations per build step instead? Any help would be much appreciated.Also, the content on the next slide will flash visible as you scroll down before it's animation starts. Any ideas?
Thanks
The text was updated successfully, but these errors were encountered: