/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/ |
H A D | Tween.java | 8 * Core class of the Tween Engine. A Tween is basically an interpolation 10 * Tween is that you can apply an easing formula on this interpolation, in 15 * The Universal Tween Engine is called "universal" because it is able to apply 24 * new interpolations easily. The common way to create a Tween is by using one 28 * - Tween.to(...)<br/> 29 * - Tween.from(...)<br/> 30 * - Tween.set(...)<br/> 31 * - Tween.call(...) 34 * <h2>Example - firing a Tween</h 79 public final class Tween extends BaseTween<Tween> { class in inherits:BaseTween 366 private Tween() { method in class:Tween [all...] |
H A D | Timeline.java | 15 * 1. First, opacity and scale are set to 0 (with Tween.set() calls).<br/> 28 * .push(Tween.set(myObject, OPACITY).target(0)) 29 * .push(Tween.set(myObject, SCALE).target(0, 0)) 31 * .push(Tween.to(myObject, OPACITY, 0.5f).target(1).ease(Quad.INOUT)) 32 * .push(Tween.to(myObject, SCALE, 0.5f).target(1, 1).ease(Quad.INOUT)) 35 * .push(Tween.to(myObject, POSITION_X, 0.5f).target(100).ease(Quad.INOUT)) 36 * .push(Tween.to(myObject, ROTATION, 0.5f).target(360).ease(Quad.INOUT)) 41 * @see Tween 139 * Adds a Tween to the current timeline. 143 public Timeline push(Tween twee [all...] |
H A D | TweenManager.java | 16 * @see Tween 221 if (obj instanceof Tween) cnt += 1;
|
/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/ |
H A D | TimelineApplet.java | 5 import aurelienribon.tweenengine.Tween; 145 "\n .push(Tween.to(imgTweenSprite, POSITION_XY, 500).target(60, 90).ease(Quart.OUT))" + 146 "\n .push(Tween.to(imgEngineSprite, POSITION_XY, 500).target(200, 90).ease(Quart.OUT))" + 147 "\n .push(Tween.to(imgUniversalSprite, POSITION_XY, 1000).target(60, 55).ease(Bounce.OUT))" + 150 "\n .push(Tween.set(imgLogoSprite, VISIBILITY).target(1))" + 151 "\n .push(Tween.to(imgLogoSprite, SCALE_XY, 800).target(1, 1).ease(Back.OUT))" + 152 "\n .push(Tween.to(blankStripSprite, SCALE_XY, 500).target(1, 1).ease(Back.OUT))" + 192 Tween.enablePooling(false); 193 Tween.registerAccessor(Sprite.class, new SpriteAccessor()); 248 .push(Tween [all...] |
H A D | TweenApplet.java | 3 import aurelienribon.tweenengine.Tween; 94 String code = "Tween.to(mySprite, POSITION_XY, " + duration + ")"; 124 Tween.enablePooling(false); 125 Tween.registerAccessor(Sprite.class, new SpriteAccessor()); 168 Tween tween = Tween.to(vialSprite, SpriteAccessor.POSITION_XY, duration) 222 jLabel9.setText("<html>\nUniversal Tween Engine v6.0.0 - <font color=\"#77C8FF\">www.aurelienribon.com</font>");
|
/external/chromium-trace/catapult/third_party/jquery/ |
H A D | jquery-2.1.4.js | 6157 function Tween( elem, options, prop, end, easing ) { function 6158 return new Tween.prototype.init( elem, options, prop, end, easing ); 6160 jQuery.Tween = Tween; class 6162 Tween.prototype = { 6163 constructor: Tween, 6174 var hooks = Tween.propHooks[ this.prop ]; 6178 Tween.propHooks._default.get( this ); 6182 hooks = Tween.propHooks[ this.prop ]; 6200 Tween [all...] |
/external/chromium-trace/catapult/third_party/flot/ |
H A D | jquery.js | 8667 var tween = jQuery.Tween( elem, animation.opts, prop, end, 8915 function Tween( elem, options, prop, end, easing ) { 8916 return new Tween.prototype.init( elem, options, prop, end, easing ); 8918 jQuery.Tween = Tween; 8920 Tween.prototype = { 8921 constructor: Tween, 8932 var hooks = Tween.propHooks[ this.prop ]; 8936 Tween.propHooks._default.get( this ); 8940 hooks = Tween [all...] |
H A D | jquery.min.js | 5 for(;index<length;index++){animation.tweens[index].run(percent)}deferred.notifyWith(elem,[animation,percent,remaining]);if(percent<1&&length){return remaining}else{deferred.resolveWith(elem,[animation]);return false}},animation=deferred.promise({elem:elem,props:jQuery.extend({},properties),opts:jQuery.extend(true,{specialEasing:{}},options),originalProperties:properties,originalOptions:options,startTime:fxNow||createFxNow(),duration:options.duration,tweens:[],createTween:function(prop,end,easing){var tween=jQuery.Tween(elem,animation.opts,prop,end,animation.opts.specialEasing[prop]||animation.opts.easing);animation.tweens.push(tween);return tween},stop:function(gotoEnd){var index=0,length=gotoEnd?animation.tweens.length:0;for(;index<length;index++){animation.tweens[index].run(1)}if(gotoEnd){deferred.resolveWith(elem,[animation,gotoEnd])}else{deferred.rejectWith(elem,[animation,gotoEnd])}return this}}),props=animation.props;propFilter(props,animation.opts.specialEasing);for(;index<length;index++){result=animationPrefilters[index].call(animation,elem,props,animation.opts);if(result){return result}}createTweens(animation,props);if(jQuery.isFunction(animation.opts.start)){animation.opts.start.call(elem,animation)}jQuery.fx.timer(jQuery.extend(tick,{anim:animation,queue:animation.opts.queue,elem:elem}));return animation.progress(animation.opts.progress).done(animation.opts.done,animation.opts.complete).fail(animation.opts.fail).always(animation.opts.always)}function propFilter(props,specialEasing){var index,name,easing,value,hooks;for(index in props){name=jQuery.camelCase(index);easing=specialEasing[name];value=props[index];if(jQuery.isArray(value)){easing=value[1];value=props[index]=value[0]}if(index!==name){props[name]=value;delete props[index]}hooks=jQuery.cssHooks[name];if(hooks&&"expand"in hooks){value=hooks.expand(value);delete props[name];for(index in value){if(!(index in props)){props[index]=value[index];specialEasing[index]=easing}}}else{specialEasing[name]=easing}}}jQuery.Animation=jQuery.extend(Animation,{tweener:function(props,callback){if(jQuery.isFunction(props)){callback=props;props=["*"]}else{props=props.split(" ")}var prop,index=0,length=props.length;for(;index<length;index++){prop=props[index];tweeners[prop]=tweeners[prop]||[];tweeners[prop].unshift(callback)}},prefilter:function(callback,prepend){if(prepend){animationPrefilters.unshift(callback)}else{animationPrefilters.push(callback)}}});function defaultPrefilter(elem,props,opts){var index,prop,value,length,dataShow,toggle,tween,hooks,oldfire,anim=this,style=elem.style,orig={},handled=[],hidden=elem.nodeType&&isHidden(elem);if(!opts.queue){hooks=jQuery._queueHooks(elem,"fx");if(hooks.unqueued==null){hooks.unqueued=0;oldfire=hooks.empty.fire;hooks.empty.fire=function(){if(!hooks.unqueued){oldfire()}}}hooks.unqueued++;anim.always(function(){anim.always(function(){hooks.unqueued--;if(!jQuery.queue(elem,"fx").length){hooks.empty.fire()}})})}if(elem.nodeType===1&&("height"in props||"width"in props)){opts.overflow=[style.overflow,style.overflowX,style.overflowY];if(jQuery.css(elem,"display")==="inline"&&jQuery.css(elem,"float")==="none"){if(!jQuery.support.inlineBlockNeedsLayout||css_defaultDisplay(elem.nodeName)==="inline"){style.display="inline-block"}else{style.zoom=1}}}if(opts.overflow){style.overflow="hidden";if(!jQuery.support.shrinkWrapBlocks){anim.done(function(){style.overflow=opts.overflow[0];style.overflowX=opts.overflow[1];style.overflowY=opts.overflow[2]})}}for(index in props){value=props[index];if(rfxtypes.exec(value)){delete props[index];toggle=toggle||value==="toggle";if(value===(hidden?"hide":"show")){continue}handled.push(index)}}length=handled.length;if(length){dataShow=jQuery._data(elem,"fxshow")||jQuery._data(elem,"fxshow",{});if("hidden"in dataShow){hidden=dataShow.hidden}if(toggle){dataShow.hidden=!hidden}if(hidden){jQuery(elem).show()}else{anim.done(function(){jQuery(elem).hide()})}anim.done(function(){var prop;jQuery.removeData(elem,"fxshow",true);for(prop in orig){jQuery.style(elem,prop,orig[prop])}});for(index=0;index<length;index++){prop=handled[index];tween=anim.createTween(prop,hidden?dataShow[prop]:0);orig[prop]=dataShow[prop]||jQuery.style(elem,prop);if(!(prop in dataShow)){dataShow[prop]=tween.start;if(hidden){tween.end=tween.start;tween.start=prop==="width"||prop==="height"?1:0}}}}}function Tween(elem,options,prop,end,easing){return new Tween.prototype.init(elem,options,prop,end,easing)}jQuery.Tween=Tween;Tween.prototype={constructor:Tween,init:function(elem,options,prop,end,easing,unit){this.elem=elem;this.prop=prop;this.easing=easing||"swing";this.options=options;this.start=this.now=this.cur();this.end=end;this.unit=unit||(jQuery.cssNumber[prop]?"":"px")},cur:function(){var hooks=Tween.propHooks[this.prop];return hooks&&hooks.get?hooks.get(this):Tween.propHooks._default.get(this)},run:function(percent){var eased,hooks=Tween [all...] |
/external/chromium-trace/catapult/tracing/third_party/css-element-queries/test/ |
H A D | mootools-core-full-nocompat.js | 9 - packager build Core/Core Core/Array Core/String Core/Number Core/Function Core/Object Core/Event Core/Browser Core/Class Core/Class.Extras Core/Slick.Parser Core/Slick.Finder Core/Element Core/Element.Style Core/Element.Event Core/Element.Delegation Core/Element.Dimensions Core/Fx Core/Fx.CSS Core/Fx.Tween Core/Fx.Morph Core/Fx.Transitions Core/Request Core/Request.HTML Core/Request.JSON Core/Cookie Core/JSON Core/DOMReady 4825 description: Contains the CSS animation logic. Used by Fx.Tween, Fx.Morph, Fx.Elements. 4998 name: Fx.Tween 5006 provides: [Fx.Tween, Element.fade, Element.highlight] 5011 Fx.Tween = new Class({ 5049 tween = new Fx.Tween(this, {link: 'cancel'});
|