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
When used in chrome, linking to separate pages adds a # in-front of the address. The multi-page.html example shows this in inspector when linking from local page two to the actual page two as
a transition="slide" href="#multi-page2.html">Slide to load page three<
when it should be
a transition="slide" href="multi-page2.html">Slide to load page three<
as shown in firefox. The animation plays ok, but the actual content is not found as the url is then
When used in chrome, linking to separate pages adds a # in-front of the address. The multi-page.html example shows this in inspector when linking from local page two to the actual page two as
a transition="slide" href="#multi-page2.html">Slide to load page three<
when it should be
a transition="slide" href="multi-page2.html">Slide to load page three<
as shown in firefox. The animation plays ok, but the actual content is not found as the url is then
zepto-page-transitions-master/example/multi-page.html#multi-page2.html
If you manually change the url of the hyperlink in chrome inspector, then you access the content, but no animation occurs.
The text was updated successfully, but these errors were encountered: