4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

bxsliderでmodeをfadeにしたらIE11でちらついて怒られたときは…

Posted at

jqueryのFadeInが悪さをしているようなので、
無理やりFadeInを使わないようにしてやります。

jquery.bxslider.js:1381(修正前)

jquery.bxslider.js:1381
slider.children.eq(slider.active.index)
.css('zIndex', slider.settings.slideZIndex + 1)
.fadeIn(slider.settings.speed, function() {

jquery.bxslider.js:1381(修正後)

jquery.bxslider.js
slider.children.eq(slider.active.index)
.css('zIndex', slider.settings.slideZIndex + 1)
.css('opacity',0).css('display','block')
.animate({opacity: 1},slider.settings.speed, function() {

私が発生した環境は背景にWebGLが引いてある状況下でしたので、
そういた環境下のみで発生するものかもしれませんが、誰かのためになればと思いここに記しておきます。

・bxSlider v4.2.12
・jquery v3.3.1

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?