Jquery Scrollmagic remove fix text trigger on right side in browser -
sorry iam newbie in here want ask how remove fix text trigger on right side in browser search in google tell remove scene.addindicators() when remove scroll gone
this screenshot enter image description here
this code
<script> // define images var images = [ "assets/img/img-aris/0001.png", "assets/img/img-aris/0002.png", "assets/img/img-aris/0003.png" ]; // tweenmax can tween property of object. use object cycle through array var obj = {curimg: 0}; // create tween var tween = tweenmax.to(obj, 1, { curimg: images.length - 1, // animate propery curimg number of images roundprops: "curimg", // integers can used array index repeat: 0, // repeat 3 times immediaterender: true, // load first image automatically ease: linear.easenone, // show every image same ammount of time onupdate: function () { $("#myimg").attr("src", images[obj.curimg]); // set image source } } ); // init controller var controller = new scrollmagic.controller(); // build scene var scene = new scrollmagic.scene({duration: 10000}) .settween(tween) .addindicators() // add indicators (requires plugin) //.removeindicators() .addto(controller); </script>
thankyouu
Comments
Post a Comment