Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. /*
  2. GsImageSequence.js
  3. GsImagesSequence , a simple way to viewing images sequence in a row , for example for obj image 360 VR or video , ... etc
  4. .................................
  5. Code by Diaco-M-Lotfollahi :
  6. www.diacodesign.com
  7. twitter.com/Diaco_ml
  8. codepen.io/MAW
  9. */
  10. var anim = {frame:0} , totalImages = 30 , duration = 1 ; // set totalImages to your images counts
  11. TweenMax.to(anim , duration , {frame:totalImages, roundProps:"frame", onUpdate:updateHandler });
  12.  
  13. function updateHandler() {
  14. image.attr("src", "images/your-image-name-"+anim.frame+".png");
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement