App.TransitionsNative Class
Provides the implementation of view transitions for Y.App.Transitions
in
browsers which support native CSS3 transitions.
When this module is used, Y.App.TransitionsNative
will automatically mix
itself in to Y.App
.
Item Index
Properties
Methods
_dequeueActiveView
()
protected
Dequeues any pending calls to _uiTransitionActiveView()
.
Note: When there is more than one queued transition, only the most
recent activeView
change will be visually transitioned, while the others
will have their transition
option overridden to false
.
_getFx
-
newView
-
oldView
-
[transition]
Returns an object containing a named fx for both viewIn
and viewOut
based on the relationship between the specified newView
and oldView
.
Parameters:
Returns:
_queueActiveView
()
protected
Queues calls to _uiTransitionActiveView()
to make sure a currently running
transition isn't interrupted.
Note: This method prevents the default _uiSetActiveView()
method from
running.
_uiTransitionActiveView
-
newView
-
[oldView]
-
[options]
Performs the actual change of this app's activeView
by visually
transitioning between the newView
and oldView
using any specified
options
.
The newView
is attached to the app by rendering it to the viewContainer
,
and making this app a bubble target of its events.
The oldView
is detached from the app by removing it from the
viewContainer
, and removing this app as a bubble target for its events.
The oldView
will either be preserved or properly destroyed.
Note: This method overrides _uiSetActiveView()
and provides all of its
functionality plus supports visual transitions. Also, the activeView
attribute is read-only and can be changed by calling the showView()
method.
Parameters:
-
newView
ViewThe View which is now this app's
activeView
. -
[oldView]
View optionalThe View which was this app's
activeView
. -
[options]
Object optionalOptional object containing any of the following properties:
-
[callback]
Function optionalOptional callback function to call after new
activeView
is ready to use, the function will be passed:-
view
ViewA reference to the newactiveView
.
-
-
[prepend=false]
Boolean optionalWhether the
view
should be prepended instead of appended to theviewContainer
. -
[render]
Boolean optionalWhether the
view
should be rendered. Note: If no value is specified, a view instance will only be rendered if it's newly created by this method. -
[transition]
Boolean | String optionalOptional transition override. A transition can be specified which will override the default, or
false
for no transition. -
[update=false]
Boolean optionalWhether an existing view should have its attributes updated by passing the
config
object to itssetAttrs()
method. Note: This option does not have an effect if theview
instance is created as a result of calling this method.
-