Page transitions do not work on tabs, since transition classes are activated when hiding / showing pages. You can create your own custom transitions, use third-party CSS transitions, or use jQM by default.
-, tabbeforeactivate . ui, (ui.oldPanel) (ui.newPanel). , , - ui-newPanel , Animation End .one().
$("#tabs").on("tabbeforeactivate", function (e, ui) {
$(ui.newPanel)
.addClass("animation")
.one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function () {
$(this).removeClass("animation");
});
});
- Daneden
- jQM