Bootstrap carousel-fade no longer working with maxcdn 3.3.bootstrap.min.css

后端 未结 1 788
清歌不尽
清歌不尽 2021-01-02 23:05

I\'ve had the fade transition working in a Bootstrap 3 build for a while now, but I just changed the call from a locally held copy of bootstrap.min.css (Bootstrap v3.1.1) to

相关标签:
1条回答
  • 2021-01-02 23:08

    I faced the same problem and I think I have a solution for what you need. In 3.3 they added CSS transforms to improve carousel performance in modern browsers so you need to override some styles. Tell me if it worked for you. :)

    -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    

    My solution here: http://codepen.io/transportedman/pen/NPWRGq?editors=110

    0 讨论(0)
提交回复
热议问题