2011-04-01 7 views
4

jQuery에서 만든 슬라이더에 문제가 있습니다. 끝내면 슬라이딩 이미지 크로스 브라우저 (ie9 제외)의 깜박임이 있음을 알게됩니다. 슬라이더를 업로드하고 싶지만 버튼을 찾을 수 없으므로 여기에 스크립트를 게시합니다. JQuery와에슬라이드의 jQuery 슬라이더 깜박임 문제

+1

에 오신 것을 환영합니다 SO 전환! SO에서 스크립트를 업로드 할 수 없으므로 jsfiddle.net에서 데모를 설정하십시오. – JohnP

답변

1

은 JS 코드를 찾아이

// 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); 
} 

},