Languages

Menu
Sites
Language
transition between pages
  Hey, guys. How can I make the transition between pages (data-role = "page"). Using only html, css, jquery. The first page should disappear over time, and the second should show.
Edited by: Michael Shaver on 27 May, 2013
Sergey
1) http://jquerymobile.com/demos/1.2.0/docs/pages/page-transitions.html 2) http://jquerymobile.com/demos/1.2.0/docs/api/methods.html 3) https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.web.appprogramming%2Fhtml%2Fapp_dev_process%2Fpagemanager_object.htm Read documentation
Sergey
1) http://jquerymobile.com/demos/1.2.0/docs/pages/page-transitions.html 2) http://jquerymobile.com/demos/1.2.0/docs/api/methods.html 3) https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.web.appprogramming%2Fhtml%2Fapp_dev_process%2Fpagemanager_object.htm Read documentation
Vineet Tiwari
You just need to create a hyperlink in page1 to page2 Go To Page 2
Vineet Tiwari
I'm not able to see previous replies
Marco Buettner
You can use HTML
...
...
JS setTimeout($.mobile.changePage("#second", {transition: fade}), 5000); After five second the content of second page will be show
Marco Buettner
html
...
...
js setTimeout($.mobile.changePage('#second', {transition: 'fade'), 5000); after five seconds the content of second page will be show
luca mezzalira
Take a look here: http://jsfiddle.net/shanabus/YjsPD/
Marco Buettner
function changeIt()
{
     $.mobile.changePage("#second");
}

setTimeout("changeIt()", 5000);