如何分辨引导旋转木马跳过一个元素或一类?(How to tell Bootstrap Carouse

2019-10-21 10:27发布

我使用的是引导旋转木马的Tumblr等它的伟大工程。 然而,主题定制页面上的tumblr增加了JavaScript以左,右和中央的HTML。 这是造成传送带打破,因为下一个元素是意想不到的。

简单地把它放在代码它看起来像这样

<div class="carousel-inner">
  <div class="active item"></div>
  <script class="custom-js-code">/* bunch of stuff go here */</script>
  <div class="item"></div>
  <script class="custom-js-code">/* bunch of stuff go here */</script>
  <div class="item"></div>
  <script class="custom-js-code">/* bunch of stuff go here */</script>
</div>

实时预览

卸下JS是出了问题,所以我需要一种方法来告诉转盘跳过使用这些元素<script>标记或custom-js-code的类。

有任何想法吗?

Answer 1:

如果可能的升级来引导3.2.0作为该版本仅在带班的孩子迭代.item

  • 见http://codepen.io/ckuijjer/pen/RNaJbx使用引导3.2.0代码
  • 见https://github.com/twbs/bootstrap/blob/master/js/carousel.js的旋转木马源代码
  • 见https://github.com/twbs/bootstrap/commit/4a2d337bf5f329eac1ca16208414ec1ebfe0546e的地方这种行为改变了变更

如果你不能移动到3.2.0版本,也许看它是否可能使此更改源代码自己。



文章来源: How to tell Bootstrap Carousel to skip an element or class?