jquery 显示下一张幻灯片的一部分

zpjtge22  于 2023-08-04  发布在  jQuery
关注(0)|答案(2)|浏览(98)

我想显示下一张幻灯片的一部分(10%),然后当我移动到下一张幻灯片的该部分时,它将显示(30%)。
大概是这样的:http://karimrashid.com/
以下是我到目前为止所做的:

<script>$.fn.cycle.defaults.autoSelector = '.slideshow';</script>

<h2>Show the left and the right slides</h2>
<div class="slideshow-container">
    <div class="slideshow responsive" 
        data-cycle-fx=carousel
        data-cycle-timeout=1000
        data-cycle-carousel-visible=1
        data-cycle-carousel-fluid=true
        >
        <img src="http://malsup.github.io/images/beach1.jpg">
        <img src="http://malsup.github.io/images/beach2.jpg">
        <img src="http://malsup.github.io/images/beach3.jpg">
        <img src="http://malsup.github.io/images/beach4.jpg">
    </div>
</div>

字符串
CSS代码:

.slideshow-container {
    overflow: hidden !important;
    width: 50%;
}

.slideshow {
    overflow: visible !important;
    width: 90%;
    margin-right: 10%;
}


http://jsfiddle.net/CairoCoder/x89sQ/259/
是否有任何现有的滑块可以做到这一点?

vom3gejh

vom3gejh1#

你为什么要看其他滑块。使用现有网站中使用的内容。
http://karimrashid.com/js/script.js
如果你需要进一步的帮助,请告诉我。

8zzbczxx

8zzbczxx2#

是的,可以在Elementor中通过使用Swiper库实现下一张幻灯片半切功能。

setTimeout(()=>{
    var swiper = new Swiper('.testimonials_wrapper .swiper-container', {
      slidesPerView: 3.5,
      spaceBetween: 15,
      loop: true,
      navigation: {
        nextEl: '.testimonials_wrapper .elementor-swiper-button-next',
        prevEl: '.testimonials_wrapper .elementor-swiper-button-prev',
      },
      pagination: {
        el: '.testimonials_wrapper .swiper-pagination',
        clickable: true,
      },
    });
}, 2500)

字符串
testimonials_wrapper类替换为自己的section类。

相关问题