A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
ScrollToPlugin — class, package com.greensock.plugins
Allows TweenLite and TweenMax to animate the scroll position of either the window (like doing window.scrollTo(x, y)) or a <div> DOM element's content (like doing myDiv.scrollTop = y; myDiv.scrollLeft = x;).
seek(timeOrLabel:any, suppressEvents:Boolean) — method, class com.greensock.TimelineLite
Jumps to a specific time (or label) without affecting whether or not the instance is paused or reversed.
seek(time:any, suppressEvents:Boolean) — method, class com.greensock.core.Animation
Jumps to a specific time without affecting whether or not the instance is paused or reversed.
set(target:Object, vars:Object, offsetOrLabel:any, baseTimeOrLabel:any) — method, class com.greensock.TimelineLite
Appends a zero-duration tween to the end of the timeline that sets values immediately (when the virtual playhead reaches that position on the timeline) - this is a convenience method that accomplishes exactly the same thing as append( TweenLite.to(target, 0, {...}) ) but with less code.
set(target:Object, vars:Object) — Static Method , class com.greensock.TweenLite
Immediately sets properties of the target accordingly - essentially a zero-duration to() tween with a more intuitive name.
set(target:Object, vars:Object) — Static Method , class com.greensock.TweenMax
Immediately sets properties of the target accordingly - essentially a zero-duration to() tween with a more intuitive name.
shiftChildren(amount:Number, adjustLabels:Boolean, ignoreBeforeTime:Number) — method, class com.greensock.TimelineLite
Shifts the startTime of the timeline's children by a certain amount and optionally adjusts labels too.
SimpleTimeline — class, package com.greensock.core
SimpleTimeline is the base class for TimelineLite and TimelineMax, providing the most basic timeline functionality and it is used for the root timelines in TweenLite but is only intended for internal use in the GreenSock tweening platform.
SimpleTimeline(vars:Object) — Constructor, class com.greensock.core.SimpleTimeline
Constructor
Sine — final class, package com.greensock.easing
Eases with a relatively low power either at the beginning (easeIn), the end (easeOut), or both (easeInOut).
SlowMo — class, package com.greensock.easing
SlowMo is a configurable ease that produces a slow-motion effect that decelerates initially, then moves linearly for a certain portion of the ease (which you can choose) and then accelerates again at the end; it's great for effects like zooming text onto the screen, smoothly moving it long enough for people to read it, and then zooming it off the screen.
SlowMo(linearRatio:Number, power:Number, yoyoMode:Boolean) — Constructor, class com.greensock.easing.SlowMo
Constructor
smoothChildTiming — Property, class com.greensock.core.SimpleTimeline
Controls whether or not child tweens/timelines are repositioned automatically (changing their startTime) in order to maintain smooth playback when properties are changed on-the-fly.
staggerFrom(targets:Array, duration:Number, vars:Object, stagger:Number, offsetOrLabel:any, baseTimeOrLabel:any, onCompleteAll:Function, onCompleteAllParams:Array, onCompleteAllScope:Object) — method, class com.greensock.TimelineLite
Tweens an array of targets from a common set of destination values (using the current values as the destination), but staggers their start times by a specified amount of time, creating an evenly-spaced sequence with a surprisingly small amount of code.
staggerFrom(targets:Array, duration:Number, vars:Object, stagger:Number, onCompleteAll:Function, onCompleteAllParams:Array, onCompleteAllScope:any) — Static Method , class com.greensock.TweenMax
Tweens an array of targets from a common set of destination values (using the current values as the destination), but staggers their start times by a specified amount of time, creating an evenly-spaced sequence with a surprisingly small amount of code.
staggerFromTo(targets:Array, duration:Number, fromVars:Object, toVars:Object, stagger:Number, offsetOrLabel:any, baseTimeOrLabel:any, onCompleteAll:Function, onCompleteAllParams:Array, onCompleteAllScope:Object) — method, class com.greensock.TimelineLite
Tweens an array of targets from and to a common set of values, but staggers their start times by a specified amount of time, creating an evenly-spaced sequence with a surprisingly small amount of code.
staggerFromTo(targets:Array, duration:Number, fromVars:Object, toVars:Object, stagger:Number, onCompleteAll:Function, onCompleteAllParams:Array, onCompleteAllScope:any) — Static Method , class com.greensock.TweenMax
Tweens an array of targets from and to a common set of values, but staggers their start times by a specified amount of time, creating an evenly-spaced sequence with a surprisingly small amount of code.
staggerTo(targets:Array, duration:Number, vars:Object, stagger:Number, offsetOrLabel:any, baseTimeOrLabel:any, onCompleteAll:Function, onCompleteAllParams:Array, onCompleteAllScope:Object) — method, class com.greensock.TimelineLite
Tweens an array of targets to a common set of destination values, but staggers their start times by a specified amount of time, creating an evenly-spaced sequence with a surprisingly small amount of code.
staggerTo(targets:Array, duration:Number, vars:Object, stagger:Number, onCompleteAll:Function, onCompleteAllParams:Array, onCompleteAllScope:any) — Static Method , class com.greensock.TweenMax
Tweens an array of targets to a common set of destination values, but staggers their start times by a specified amount of time, creating an evenly-spaced sequence with a surprisingly small amount of code.
startTime(value:Number) — method, class com.greensock.core.Animation
Gets or sets the time at which the animation begins on its parent timeline (after any delay that was defined).
SteppedEase — class, package com.greensock.easing
Most easing equations give a smooth, gradual transition between the start and end values, but SteppedEase provides an easy way to define a specific number of steps that the transition should take.
SteppedEase(steps:int) — Constructor, class com.greensock.easing.SteppedEase
Constructor
stop() — method, class com.greensock.TimelineLite
[deprecated] Pauses the timeline (used for consistency with Flash's MovieClip.stop() functionality, but essentially accomplishes the same thing as pause() without the parameter)
Strong — final class, package com.greensock.easing
Provides an easeIn, easeOut, and easeInOut with a power (or strength) of 4 which is identical to the Power4 ease.
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z