微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

React-Bootstrap Carousel 偶尔会卡在第二张图片上

如何解决React-Bootstrap Carousel 偶尔会卡在第二张图片上

我的 React-Bootstrap Carousel 偶尔会长时间停留在第二张图像上,即使我有一个 {1500} 的间隔集。

无论我在那里使用什么图像,都会发生这种情况。有什么想法吗?

function Work() {

  return (
    <Carousel fade indicators={false} controls={false} >

       {/* provides brief period with no image. */}
       <Carousel.Item interval={200}></Carousel.Item>

      <Carousel.Item interval={1500}>
        <img className="d-block w-100" src={news} alt="News Flash" />
      </Carousel.Item>

      <Carousel.Item interval={5000}>
        <img
          className="d-block w-100"
          src={newsBlur}
          alt="News Flash blurred"
        />
        <Carousel.Caption style={styles.carouselCaption}>
          <h3>
            News Flash gathers news based on the user's
            news category preferences.
          </h3>
          <h3>
            <a
              href="https://github.com/Xr7TSi/News-Flash"
              className="btn btn-primary"
              style={styles.buttonPrimary}
            >
              <h5>See the repo</h5>
            </a>
          </h3>
        </Carousel.Caption>
      </Carousel.Item>
    </Carousel>
    
  );
}

解决方法

原因是因为您在显示图像时将鼠标悬停在图像上,这会导致您的 Carousel 粘在该图像上,而不管时间间隔如何。将鼠标移开后,Carousel 将移至下一张图像。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。