Forked from 14islands's Pen Basic Web Animations Tween.
A Pen by Captain Anonymous on CodePen.
Forked from 14islands's Pen Basic Web Animations Tween.
A Pen by Captain Anonymous on CodePen.
<div id="target"></div> |
TweenLite.to('#target', 0.3, { | |
x: 320, | |
ease: Quad.easeInOut | |
}); |
html, body { | |
background: #f6f6f6; | |
height: 100%; | |
} | |
#target { | |
position: absolute; | |
width: 320px; | |
height: 1000px; | |
background: #b7d02e; | |
} |