mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-21 08:20:24 +00:00
The expected prototype for a transitionHandler is as follows: function handler(name, reverse, $to, $from) The name parameter is the name of the transition as specified by @data-transition attribute, reverse is a boolean that is false for a normal transition, and true for a reverse transition. The $to param is a jQuery collection containing the page that is being transitioned "to", and $from is an optional collection that tells us what page we are transitioning "from". Because $from is optional, handler developers should take care and check $from to make sure it is not undefined before attempting to dereference it. In addition to registering custom transition by name, developers can specify a handler to use in the case where a transition name is specified and does not exist within the $.mobile.transitionHanlders dictionary. Within jQuery Mobile, the default handler for unknown transition types is the $.mobile.css3Transition() handler. This handler always assumes that the transition name is to be used as a CSS class to be placed on the $to and $from elements. To change the default handler, simply set $.mobile.defaultTransitionHandler to you function handler: $.mobile.defaultTransitionHandler = myTransitionHandler; The changes to make all this necessary are as follows: - Created $.mobile.noneTransitionHandler which is the default transitionHandler for the framework that simply adds and removes the page active class on the $from and $to pages with no animations. - Moved class based transition code into a new plugin jquery.mobile.transition.js file. This plugin, when present, overrides the noneTransitionHandler as the defaultTranstionHandler for the framework so that CSS3 animation transitions are available. - Removed code related to the setting/removal of the ui-mobile-viewport-perspective class. The css3TransitionHandler plugin takes care of automatically placing a "viewport-<transition name>" class on the viewport (body) element. This allows any other transition to specify properties on the viewport that are necessary to accomplish the transition. - changed the CSS class ui-mobile-viewport-perspective to viewport-flip to match code changes. This makes it more apparent that setting -webkit-perspective is only used with the flip transition. - Updated js/index.php, Makefile and build.xml to include the new jquery.mobile.transition.js file.
265 lines
No EOL
5.6 KiB
CSS
265 lines
No EOL
5.6 KiB
CSS
/*
|
|
* jQuery Mobile Framework
|
|
* Copyright (c) jQuery Project
|
|
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
|
*/
|
|
.spin {
|
|
-webkit-transform: rotate(360deg);
|
|
-webkit-animation-name: spin;
|
|
-webkit-animation-duration: 1s;
|
|
-webkit-animation-iteration-count: infinite;
|
|
}
|
|
@-webkit-keyframes spin {
|
|
from {-webkit-transform: rotate(0deg);}
|
|
to {-webkit-transform: rotate(360deg);}
|
|
}
|
|
|
|
/* Transitions from jQtouch (with small modifications): http://www.jqtouch.com/
|
|
Built by David Kaneda and maintained by Jonathan Stark.
|
|
*/
|
|
.in, .out {
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
-webkit-animation-duration: 350ms;
|
|
}
|
|
|
|
.slide.in {
|
|
-webkit-transform: translateX(0);
|
|
-webkit-animation-name: slideinfromright;
|
|
}
|
|
|
|
.slide.out {
|
|
-webkit-transform: translateX(-100%);
|
|
-webkit-animation-name: slideouttoleft;
|
|
}
|
|
|
|
.slide.in.reverse {
|
|
-webkit-transform: translateX(0);
|
|
-webkit-animation-name: slideinfromleft;
|
|
}
|
|
|
|
.slide.out.reverse {
|
|
-webkit-transform: translateX(100%);
|
|
-webkit-animation-name: slideouttoright;
|
|
}
|
|
|
|
.slideup.in {
|
|
-webkit-transform: translateY(0);
|
|
-webkit-animation-name: slideinfrombottom;
|
|
z-index: 10;
|
|
}
|
|
|
|
.slideup.out {
|
|
-webkit-animation-name: dontmove;
|
|
z-index: 0;
|
|
}
|
|
|
|
.slideup.out.reverse {
|
|
-webkit-transform: translateY(100%);
|
|
z-index: 10;
|
|
-webkit-animation-name: slideouttobottom;
|
|
}
|
|
|
|
.slideup.in.reverse {
|
|
z-index: 0;
|
|
-webkit-animation-name: dontmove;
|
|
}
|
|
.slidedown.in {
|
|
-webkit-transform: translateY(0);
|
|
-webkit-animation-name: slideinfromtop;
|
|
z-index: 10;
|
|
}
|
|
|
|
.slidedown.out {
|
|
-webkit-animation-name: dontmove;
|
|
z-index: 0;
|
|
}
|
|
|
|
.slidedown.out.reverse {
|
|
-webkit-transform: translateY(-100%);
|
|
z-index: 10;
|
|
-webkit-animation-name: slideouttotop;
|
|
}
|
|
|
|
.slidedown.in.reverse {
|
|
z-index: 0;
|
|
-webkit-animation-name: dontmove;
|
|
}
|
|
|
|
@-webkit-keyframes slideinfromright {
|
|
from { -webkit-transform: translateX(100%); }
|
|
to { -webkit-transform: translateX(0); }
|
|
}
|
|
|
|
@-webkit-keyframes slideinfromleft {
|
|
from { -webkit-transform: translateX(-100%); }
|
|
to { -webkit-transform: translateX(0); }
|
|
}
|
|
|
|
@-webkit-keyframes slideouttoleft {
|
|
from { -webkit-transform: translateX(0); }
|
|
to { -webkit-transform: translateX(-100%); }
|
|
}
|
|
|
|
@-webkit-keyframes slideouttoright {
|
|
from { -webkit-transform: translateX(0); }
|
|
to { -webkit-transform: translateX(100%); }
|
|
}
|
|
|
|
|
|
@-webkit-keyframes slideinfromtop {
|
|
from { -webkit-transform: translateY(-100%); }
|
|
to { -webkit-transform: translateY(0); }
|
|
}
|
|
|
|
@-webkit-keyframes slideinfrombottom {
|
|
from { -webkit-transform: translateY(100%); }
|
|
to { -webkit-transform: translateY(0); }
|
|
}
|
|
|
|
@-webkit-keyframes slideouttobottom {
|
|
from { -webkit-transform: translateY(0); }
|
|
to { -webkit-transform: translateY(100%); }
|
|
}
|
|
|
|
@-webkit-keyframes slideouttotop {
|
|
from { -webkit-transform: translateY(0); }
|
|
to { -webkit-transform: translateY(-100%); }
|
|
}
|
|
@-webkit-keyframes fadein {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
@-webkit-keyframes fadeout {
|
|
from { opacity: 1; }
|
|
to { opacity: 0; }
|
|
}
|
|
|
|
.fade.in {
|
|
opacity: 1;
|
|
z-index: 10;
|
|
-webkit-animation-name: fadein;
|
|
}
|
|
.fade.out {
|
|
z-index: 0;
|
|
-webkit-animation-name: fadeout;
|
|
}
|
|
|
|
/* The properties in this rule are only necessary for the 'flip' transition.
|
|
* We need specify the perspective to create a projection matrix. This will add
|
|
* some depth as the element flips. The depth number represents the distance of
|
|
* the viewer from the z-plane. According to the CSS3 spec, 1000 is a moderate
|
|
* value.
|
|
*/
|
|
.viewport-flip {
|
|
-webkit-perspective: 1000;
|
|
position: absolute;
|
|
}
|
|
|
|
.ui-mobile-viewport-transitioning,
|
|
.ui-mobile-viewport-transitioning .ui-page {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.flip {
|
|
-webkit-animation-duration: .65s;
|
|
-webkit-backface-visibility:hidden;
|
|
-webkit-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */
|
|
}
|
|
|
|
.flip.in {
|
|
-webkit-transform: rotateY(0) scale(1);
|
|
-webkit-animation-name: flipinfromleft;
|
|
}
|
|
|
|
.flip.out {
|
|
-webkit-transform: rotateY(-180deg) scale(.8);
|
|
-webkit-animation-name: flipouttoleft;
|
|
}
|
|
|
|
/* Shake it all about */
|
|
|
|
.flip.in.reverse {
|
|
-webkit-transform: rotateY(0) scale(1);
|
|
-webkit-animation-name: flipinfromright;
|
|
}
|
|
|
|
.flip.out.reverse {
|
|
-webkit-transform: rotateY(180deg) scale(.8);
|
|
-webkit-animation-name: flipouttoright;
|
|
}
|
|
|
|
@-webkit-keyframes flipinfromright {
|
|
from { -webkit-transform: rotateY(-180deg) scale(.8); }
|
|
to { -webkit-transform: rotateY(0) scale(1); }
|
|
}
|
|
|
|
@-webkit-keyframes flipinfromleft {
|
|
from { -webkit-transform: rotateY(180deg) scale(.8); }
|
|
to { -webkit-transform: rotateY(0) scale(1); }
|
|
}
|
|
|
|
@-webkit-keyframes flipouttoleft {
|
|
from { -webkit-transform: rotateY(0) scale(1); }
|
|
to { -webkit-transform: rotateY(-180deg) scale(.8); }
|
|
}
|
|
|
|
@-webkit-keyframes flipouttoright {
|
|
from { -webkit-transform: rotateY(0) scale(1); }
|
|
to { -webkit-transform: rotateY(180deg) scale(.8); }
|
|
}
|
|
|
|
|
|
/* Hackish, but reliable. */
|
|
|
|
@-webkit-keyframes dontmove {
|
|
from { opacity: 1; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
.pop {
|
|
-webkit-transform-origin: 50% 50%;
|
|
}
|
|
|
|
.pop.in {
|
|
-webkit-transform: scale(1);
|
|
opacity: 1;
|
|
-webkit-animation-name: popin;
|
|
z-index: 10;
|
|
}
|
|
|
|
.pop.out.reverse {
|
|
-webkit-transform: scale(.2);
|
|
opacity: 0;
|
|
-webkit-animation-name: popout;
|
|
z-index: 10;
|
|
}
|
|
|
|
.pop.in.reverse {
|
|
z-index: 0;
|
|
-webkit-animation-name: dontmove;
|
|
}
|
|
|
|
@-webkit-keyframes popin {
|
|
from {
|
|
-webkit-transform: scale(.2);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
-webkit-transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes popout {
|
|
from {
|
|
-webkit-transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
to {
|
|
-webkit-transform: scale(.2);
|
|
opacity: 0;
|
|
}
|
|
} |