extjs - animate() function not work properly in EXTJS4 with IE 8 -
i using extjs 4 ie 8 project. created 1 animation sequence of small circles. @ 1 interval of 1 second 1 circle disappeared , other circle disappeared.
code :-
me.startanimation=function(circles,color,direction,startindex,initindex) { try { circles.items[startindex].animate({ duration: 0, to: { fill:'#fff' } }).animate({ delay: 1000, to: { fill:color }, listeners: { afteranimate: function() { // execute custom method after animation if(direction==='direct') startindex++; else startindex--; if(startindex===circles.length || startindex<0) startindex=initindex; this.startanimation(circles,color,direction,startindex,initindex); }, scope: } }); } catch(e) { return; } }
animation worked fine in chrome , firefox in ie 8 created problem. in ie 8 circle not disappeared show in above image. so, problem out of 3 (ie 8, extjs 4, animate function)...?
Comments
Post a Comment