last data update: 2011/10/15, 15:54

Website loading time

during the test: 1.47 s

cable connection (average): 1.56 s

DSL connection (average): 1.66 s

modem (average): 6.65 s

HTTP headers

Information about DNS servers

jstween.blogspot.comCNAMEblogspot.l.google.comIN3600

Received from the first DNS server

Received from the second DNS server

Subdomains (the first 50)

Typos (misspells)

hstween.blogspot.com
nstween.blogspot.com
mstween.blogspot.com
kstween.blogspot.com
istween.blogspot.com
ustween.blogspot.com
jatween.blogspot.com
jztween.blogspot.com
jxtween.blogspot.com
jdtween.blogspot.com
jetween.blogspot.com
jwtween.blogspot.com
jsrween.blogspot.com
jsfween.blogspot.com
jsgween.blogspot.com
jsyween.blogspot.com
js6ween.blogspot.com
js5ween.blogspot.com
jstqeen.blogspot.com
jstaeen.blogspot.com
jstseen.blogspot.com
jsteeen.blogspot.com
jst3een.blogspot.com
jst2een.blogspot.com
jstwwen.blogspot.com
jstwsen.blogspot.com
jstwden.blogspot.com
jstwren.blogspot.com
jstw4en.blogspot.com
jstw3en.blogspot.com
jstwewn.blogspot.com
jstwesn.blogspot.com
jstwedn.blogspot.com
jstwern.blogspot.com
jstwe4n.blogspot.com
jstwe3n.blogspot.com
jstweeb.blogspot.com
jstweem.blogspot.com
jstweej.blogspot.com
jstweeh.blogspot.com
stween.blogspot.com
jtween.blogspot.com
jsween.blogspot.com
jsteen.blogspot.com
jstwen.blogspot.com
jstwen.blogspot.com
jstwee.blogspot.com
sjtween.blogspot.com
jtsween.blogspot.com
jswteen.blogspot.com
jstewen.blogspot.com
jstween.blogspot.com
jstwene.blogspot.com
jjstween.blogspot.com
jsstween.blogspot.com
jsttween.blogspot.com
jstwween.blogspot.com
jstweeen.blogspot.com
jstweeen.blogspot.com
jstweenn.blogspot.com

Location

IP: 209.85.175.132

continent: NA, country: United States (USA), city: Mountain View

Website value

rank in the traffic statistics:

There is not enough data to estimate website value.

Basic information

website build using CSS

code weight: 36.24 KB

text per all code ratio: 29 %

title: JAVASCRIPT MOTION TWEEN

description:

keywords:

encoding: UTF-8

language: en

Website code analysis

one word phrases repeated minimum three times

PhraseQuantity
to11
the11
eventObject7
you6
new5
type="button"5
Tween4
be3
that3
object3
want3

two word phrases repeated minimum three times

PhraseQuantity
you want3
want to3

three word phrases repeated minimum three times

PhraseQuantity
you want to3

B tags

The Tween classCONSTRUCTORvar t = new Tween(object,property,easing,start,end,duration,suffixe);object:type:ObjectThe object you want to modify. It can be any object, a visual object that you want to animate ( document.body.style ) or an anymous object ( new Object() ).property:type:StringThe property that is updated on the target object, it can be empty ('')easing:type:FunctionThe easing that will be applied to motion. ( I have listed the functions below and created a sample to allow you to try them )start:type:NumberStart valueend:type:NumberEnd valueduration:type:NumberAnimation duration in secondssuffixe:type:StringA string to append to the updated property ('%','pt','em' ...). METHODSstart()rewind()fforward()stop()resume()continueTo( end, duration )yoyo()addListener( listenerObject )removeListener( listenerObject )<div id="sq" style="width:50px;height:50px;position:relative;left:0px;border:1px solid #333333;"></div><input type="button" value="start()" onclick="t1 = new Tween(document.getElementById('sq').style,'left',Tween.elasticEaseOut,0,500,4,'px');t1.start();"><input type="button" onclick="t1.stop();" value="stop()"><input type="button" onclick="t1.resume();" value="resume()"><input type="button" onclick="t1.rewind();" value="rewind()"><input type="button" onclick="t1.fforward();" value="fforward()">Easing functionsAbout Easing Classes and MethodsThe default easing functions are methods of the Tween.as class.Tween.regularEaseInTween.regularEaseOutTween.regularEaseInOutTween.strongEaseInTween.strongEaseOutTween.strongEaseInOutTween.backEaseOutTween.backEaseInTween.backEaseInOutTween.bounceEaseOutTween.bounceEaseInTween.bounceEaseInOutTween.elasticEaseInTween.elasticEaseOutTween.elasticEaseInOutA sample to try these methodsEVENTS AND LISTENERSonMotionStarted( eventObject )onMotionChanged( eventObject )onMotionFinished( eventObject )onMotionStopped( eventObject )onMotionLooped( eventObject )onMotionResumed( eventObject )the eventObject passed contains 2 properties:target : the Tween instance (object)type : the event name (string, ex: 'onMotionChanged')2 ways to use events :1Щ adding a method on your Tween instance with the same name as the event you want to listen.Example:t1A = new Tween(document.getElementById('sqA').style,'left',Tween.elasticEaseOut,0,500,1,'px');t1A.onMotionFinished = function()

t1A.start();Example:using the yoyo() method, the following code will create an endless animation:t1C = new Tween(document.getElementById('sqC').style,'left',Tween.elasticEaseOut,0,500,1,'px');t1C.onMotionFinished = function(){this.yoyo()

t1C.start();If, for example you wanted the yoyo() to perform only once, you would write code liket1C.onMotionFinished = function(){   this.yoyo();   this.onMotionFinished = undefined;}2Щ using the addListener method:Example:t1A = new Tween(document.getElementById('sqA').style,'left',Tween.elasticEaseOut,0,500,1,'px');var a = new Object();

a.onMotionFinished = function()

   alert( 'onMotionFinished' )};a.onMotionStarted = function()

   alert( 'onMotionStarted' )}t1A.addListener(a)

U tags

I tags

images

file namealternative text
widgets
Powered by Blogger

headers

H1

H2

January 28, 2007

About Me

Previous Posts

Archives

H3

January 28, 2007

About Me

Previous Posts

Archives

H4

H5

H6

internal links

addressanchor text
Tween
Constructor
Methods
Example
Easing functions
Events
Events listeners
ColorTween
Constructor
Example
OpacityTween
Constructor
Example
TextTween
Constructor
Sequence
Methods
Events
Usage
See it in action
12:21 AM
links to this post
Javascript Motion Tween
January 2007

external links

addressanchor text
Example
Example
Example
sample
About Easing Classes and Methods
A sample to try these methods
here
Open example in a new window
Tween.js
ColorTween.js
OpacityTween.js
TextTween.js
Sequence.js
Parallel.js
Dock menu @ 2210media.com
Expandable textarea from Arturo Monterroso
Robert Penner
Using the Tween and Transition Classes in Flash MX 2004
Macromedia Flash
106 comments
pim
View my complete profile
widgets
widgets
Pimz
Powered by Blogger