gabaum10
gabaum10

Reputation: 3827

Jquery Mobile - $.mobile.changepage not doing transition

So I am transitioning to a page doing this:

$.mobile.changePage( "newPage.html",  "fade");

but for some reason the page is not showing the fancy transition the way it should. Does anyone know why this may be happening? JQM is loading all right and everything seems to be functioning properly except the page transitions. Do you need to do anything special to configure the page transitions?

This is JQM-B2 btw.

Upvotes: 3

Views: 1884

Answers (2)

Mohammed Al-rawhani
Mohammed Al-rawhani

Reputation: 11

$.mobile.changePage( "../login/login.html", { transition: "none"});

Upvotes: 0

dSquared
dSquared

Reputation: 9835

The transitions used by Jquery Mobile rely on CSS 3 transition effects that FF is not able to replicate correctly. I would suggest using Desktop Safari as your desktop testing browser as it will do a better job of replicating how Mobile Safari will act.

Hope this helps!

Upvotes: 1

Related Questions