admin管理员组文章数量:1345088
I am using
var allslides = document.querySelector(".lazy");
for (var i = allslides.children.length; i >= 0; i--) {
allslides.appendChild(allslides.children[Math.random() * i | 0]);
};
to randomize the slide order in Slick carousal (image slider).
Here ".lazy" is:
<section class="lazy slider" data-sizes="50vw">
<div><img src="1.png"/</div>
<div><img src="2.png"/</div>
<div><img src="3.png"/</div>
<div><img src="4.png"/</div>
</section>
All is fine except a blank slide (or a white gap) gets inserted. Just can't get rid of it. Any clues or cues?
I am using
var allslides = document.querySelector(".lazy");
for (var i = allslides.children.length; i >= 0; i--) {
allslides.appendChild(allslides.children[Math.random() * i | 0]);
};
to randomize the slide order in Slick carousal (image slider).
Here ".lazy" is:
<section class="lazy slider" data-sizes="50vw">
<div><img src="1.png"/</div>
<div><img src="2.png"/</div>
<div><img src="3.png"/</div>
<div><img src="4.png"/</div>
</section>
All is fine except a blank slide (or a white gap) gets inserted. Just can't get rid of it. Any clues or cues?
Share Improve this question edited Apr 16, 2020 at 7:46 Richard Dallaway 4,3301 gold badge29 silver badges39 bronze badges asked Apr 20, 2018 at 21:58 Platform anthropocene Inc.Platform anthropocene Inc. 511 gold badge1 silver badge7 bronze badges 2- Take a look at the answer to this question: stackoverflow./questions/2450954/… – J. Kamien Commented Apr 20, 2018 at 22:03
- Is this meant to answer my question? Could you please tell what I should be looking for? – Platform anthropocene Inc. Commented Apr 20, 2018 at 22:15
1 Answer
Reset to default 8You don't really need to manipulate the DOM
at all. Simply hook into the goto
method and randomly navigate to a different slide.
This is one of many possible implementations:
var total = $('.slick-slideshow img').length, // get the number of slides
rand = Math.floor( Math.random() * total ); // random number
$('.slick-slideshow').slick({
autoplay: true,
autoplaySpeed: 7000,
arrows: false,
fade: true,
slide: "img",
pauseOnHover: false
})
.slickGoTo(rand); //navigate to random slide
You can learn more in this discussion: https://github./kenwheeler/slick/issues/359
本文标签: javascriptRandom slide order in slick image sliderStack Overflow
版权声明:本文标题:javascript - Random slide order in slick image slider - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743799451a2541036.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论