Skip to content

Instantly share code, notes, and snippets.

@frequent
Created November 25, 2012 10:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frequent/4143032 to your computer and use it in GitHub Desktop.
Save frequent/4143032 to your computer and use it in GitHub Desktop.
jQuery Mobile Multiview - basic panel transitions
<!-- panel transitions on HTML links -->
<a href="somePage.html" data-transition="fade" data-panel="your_panel_id">
<!-- programmatic -->
$.mobile.changePage('somePage.html', {
transition: 'fade',
pageContainer: $('div:jqmData(id="your_panel_id")')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment