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.
transition between pages
By Enjo
15 Mar 2013 08:41
English
9 Replies
Edited by: Michael Shaver on 27 May, 2013
Sergey
24 May 2013 02:19
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
- Log in to post comments
Sergey
24 May 2013 02:20
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
- Log in to post comments
Vineet Tiwari
24 May 2013 02:33
You just need to create a hyperlink in page1 to page2
Go To Page 2
- Log in to post comments
Vineet Tiwari
24 May 2013 02:34
I'm not able to see previous replies
- Log in to post comments
Marco Buettner
24 May 2013 04:12
You can use
HTML
...
...
JS
setTimeout($.mobile.changePage("#second", {transition: fade}), 5000);
After five second the content of second page will be show - Log in to post comments
Marco Buettner
24 May 2013 04:15
html
...
...
js
setTimeout($.mobile.changePage('#second', {transition: 'fade'), 5000);
after five seconds the content of second page will be show - Log in to post comments
luca mezzalira
26 May 2013 12:48
Take a look here: http://jsfiddle.net/shanabus/YjsPD/
- Log in to post comments
Marco Buettner
26 May 2013 17:55
function changeIt() { $.mobile.changePage("#second"); } setTimeout("changeIt()", 5000);
- Log in to post comments