Problem with jQuery slider if slide

Hey, I have a difficult problem with the slider I created in jQuery. Upon completion, I understand that there is a flicker of the moving images of the cross browser (except ie9). I would like to download the slider, but I can not find the button, so I post the script here.

+4
source share
1 answer

In jquery js find this code and switch this

// Simple 'hide' function hide: function() { // Remember where we started, so that we can go back to it later this.options.orig[this.prop] = jQuery.style( this.elem, this.prop ); this.options.hide = true; // Begin the animation if ($.browser.msie){ this.custom(this.cur(), 1); } else{ this.custom(this.cur(), 0); } }, 
+1
source

Source: https://habr.com/ru/post/1346183/


All Articles