简体   繁体   中英

Food menu slider with an infinite loop

您能否帮助我了解如何制作在https://livedemo00.template-help.com/wt_61177_v1/#undefined6网站的“我们的菜单”部分中看到的带有无限循环和相同功能的滑块。

The exact slider you are looking for is a Slick Auto play slider which is just the auto play version of the example you have. Example code.

    $('.autoplay').slick({
  slidesToShow: 5, //The amount of slides to be in view at any given time
  slidesToScroll: 1, // The amount of slides to scroll on click or auto scoll
  autoplay: true, // Sets the slider to automatically slide through the slides
  autoplaySpeed: 2000, // The interval between sliding between slides
});

Example image of slider on slicks website:

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM