Skip to content

Instantly share code, notes, and snippets.

@JeongInyoung
Created December 31, 2014 05:43
Show Gist options
  • Save JeongInyoung/7e73a5473a88688c2b63 to your computer and use it in GitHub Desktop.
Save JeongInyoung/7e73a5473a88688c2b63 to your computer and use it in GitHub Desktop.
KwNKjN
<svg width="100%" height="100%" viewBox="0 0 1000 300">
<defs>
<path id="p" />
</defs>
<text font-family="Verdana" font-size="40">
<textPath xlink:href="#p">
We go up, then we go down, then up again
</textPath>
</text>
</svg>
var $p = $('#p'),
p = { y: 0 };
TweenMax.to(p, 1, {
y: 300,
repeat: -1,
yoyo: true,
ease: Back.easeInOut,
onUpdate: function() {
$p.attr('d', 'M 100 150 Q 300 '+p.y+', 500 150 T 900 150');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment