gabwebdesign
10/12/2017 - 3:17 PM

GreenSock - GSAP | Avoid Jittery animation with slow moving images - GSAP - GreenSock | HTML5 | ---> Hack 2

GreenSock - GSAP | Avoid Jittery animation with slow moving images - GSAP - GreenSock | HTML5 | ---> Hack 2

//(x, y) instead (left, right, bottom or right) if jittery doesn't fix.					
					
//Notice that if you use (x,y) without the quotation marks ( " " ) it will increase the current value.					
.to("#", time, {scale:1, x:135, y:14, transformOrigin:"bottom bottom", ease:Circ.easeOut})					
					
//Notice that if you use (x,y) with the quotation marks ( " " ) it will be a fixed value.					
.to("#", time, {scale:1, x:"135px", y:"14px", transformOrigin:"bottom bottom", ease:Circ.easeOut});