Lines Matching defs:transitions
2 Provides view transitions for `Y.App` in browsers which support native CSS3
3 transitions.
6 @submodule app-transitions
11 Provides view transitions for `Y.App` in browsers which support native CSS3
12 transitions.
14 View transitions provide an nice way to move from one "page" to the next that is
30 `transitions` attribute.
40 Whether or not this application should use view transitions, and if so then
42 `transitions` prototype property.
45 browsers which support native CSS3 transitions.
47 @attribute transitions
52 transitions: {
74 Collect of transitions -> fx.
80 By default transitions: `fade`, `slideLeft`, and `slideRight` have fx defined.
108 Default transitions to use when the `activeView` changes.
110 The following are types of changes for which transitions can be defined that
125 browsers which support native CSS3 transitions.
127 @property transitions
137 transitions: {
161 transitions: true,
177 // => Creates a new `Y.UsersView` and transitions to it.
202 // Does not override `showView()` but does use `options.transitions`.
207 Setter for `transitions` attribute.
210 `transitions` prototype property.
213 @param {Boolean|Object} transitions The new `transitions` attribute value.
218 _setTransitions: function (transitions) {
219 var defTransitions = this.transitions;
221 if (transitions && transitions === true) {
225 return transitions;