Is it possible to achieve smooth asynchronous page transitions without breaking existing JavaScript animations in a system like Webflow? I'm struggling to find a way to present new elements to the DOM without disrupting the animations that are already in place.
I'm looking for a solution that provides the effect of location.reload(); without actually reloading the window. Is there a way to refresh the DOM so that all new elements are recognized and ensure that animations continue to work seamlessly?
I've attempted to refresh the entire script generated by the system (25,000 lines of JS code), but this only partially solves the issue as some specific animations, such as scroll into view animations, still fail to work properly.
/Hans