0
私は、グリーンバックGSAP Tween platformを使ってアニメートしているスプライトを持っています。この偽りは7つの異なる画像を含み、それを使ってアニメーションを作成します。スプライト上の各画像は1000px
で、1000px
のサイズです。レスポンシブなスプライトアニメーションGSAP
以下のコードがあります。
HTML
<div id="animate-wrapper">
<img src="test.svg">
</div>
CSS
#animate-wrapper {
height: 1000px;
width: 1000px;
overflow: hidden;
}
#animate-wrapper img {
height: 100%;
width: 700%;
}
JS
var animateTongueOut = new TimelineMax({paused: true});
var easeTongueOut = new SteppedEase(6);
animateTongueOut.to('#animate-wrapper img', 1, {
x: '-6000px',
ease: easeTongueOut
})