My first SPA site ever is nearing completion. I am now a believer in routes and SPA methods. My boss likes the idea of animated elements on the pages as well, but as we know the views are cached an the animations only work once.
I am guessing the answer is no, but is there a way to prevent the view caching so that animations will work on every view change?
The animation seems to be set only on a single paragraph. What Brad needs to do is animate the page transition. Which does not work with current routing implementation as posted here.
@brad not caching page would defeat the purpose of having an SPA in my understanding. The better solution would be to expose the loadaed event. That would also help us handle multiple other issues we are facing with SPAs too.
Brad, you have applied inview animations through the UI.
Please double check Patrick's explanation, remove any animation options applied and manually add the classes he mentioned.
You can edit the animate CSS file and change the default duration, which if I properly remember is 400ms (not 100% sure about the default duration, on my phone currently)
Thanks for your help, @teodor. I was hoping to be able to animated individual elements but I will settle for full page transitions. Thanks again, much appreciated.