Home | History | Annotate | Download | only in parse-only

Lines Matching refs:fx

3130 Script: Fx.js
3131 Contains the basic animation logic to be extended by all other Fx Classes.
3137 var Fx = new Class({
3156 this.options.duration = Fx.Durations[this.options.duration] || this.options.duration.toInt();
3183 return Fx.compute(from, to, delta);
3255 Fx.compute = function(from, to, delta){
3259 Fx.Durations = {'short': 250, 'normal': 500, 'long': 1000};
3263 Script: Fx.CSS.js
3264 Contains the CSS animation logic. Used by Fx.Tween, Fx.Morph, Fx.Elements.
3270 Fx.CSS = new Class({
3272 Extends: Fx,
3295 Fx.CSS.Parsers.each(function(parser, key){
3300 found = found || {value: val, parser: Fx.CSS.Parsers.String};
3312 computed.$family = {name: 'fx:css:value'};
3319 if ($type(value) != 'fx:css:value') value = this.parse(value);
3336 if (Fx.CSS.Cache[selector]) return Fx.CSS.Cache[selector];
3355 return Fx.CSS.Cache[selector] = to;
3360 Fx.CSS.Cache = {};
3362 Fx.CSS.Parsers = new Hash({
3371 return Math.round(Fx.compute(from[i], to[i], delta));
3381 compute: Fx.compute,
3397 Script: Fx.Tween.js
3398 Formerly Fx.Style, effect to transition any CSS property for an element.
3404 Fx.Tween = new Class({
3406 Extends: Fx.CSS,
3443 this.store('tween', new Fx.Tween(this, this.retrieve('tween:options')));
3494 Script: Fx.Morph.js
3495 Formerly Fx.Styles, effect to transition any number of CSS properties for an element using an object of rules, or CSS based selector rules.
3501 Fx.Morph = new Class({
3503 Extends: Fx.CSS,
3547 this.store('morph', new Fx.Morph(this, this.retrieve('morph:options')));
3565 Script: Fx.Transitions.js
3566 Contains a set of advanced transitions to be used with any of the Fx Classes.
3575 Fx.implement({
3578 var trans = this.options.transition || Fx.Transitions.Sine.easeInOut;
3581 trans = Fx.Transitions;
3590 Fx.Transition = function(transition, params){
3605 Fx.Transitions = new Hash({
3611 Fx.Transitions.extend = function(transitions){
3612 for (var transition in transitions) Fx.Transitions[transition] = new Fx.Transition(transitions[transition]);
3615 Fx.Transitions.extend({
3656 Fx.Transitions[transition] = new Fx.Transition(function(p){