gpt4 book ai didi

javascript - 在 Prototype-UI 中将循环滚动添加到我的轮播中

转载 作者:行者123 更新时间:2023-12-02 19:48:20 28 4
gpt4 key购买 nike

我有一个旋转木马,可以很好地滚动,但是当到达内容末尾( <li>.</li> )时,它就会停止。我希望它能从头开始。

这是我的代码,我因为不擅长 JavaScript 等而编写了代码。

<script type="text/javascript">

function startscroll() {
x = window.setInterval(function scroll() {
hCarousel.scrollTo(hCarousel.currentIndex() + 3);
},3000);
}

function stopscroll() {
window.clearInterval(x);
}

function runTest() {
hCarousel = new UI.Carousel("horizontal_carousel", {direction: "horizontal"});
startscroll();
$('horizontal_carousel').observe('mouseover', stopscroll);
$('horizontal_carousel').observe('mouseout', startscroll);
}

Event.observe(window, "load", runTest);

</script>

感谢您的帮助戴夫。

最佳答案

改变这个

$('horizo​​ntal_carousel').observe('mouseover', stopscroll);
$('horizo​​ntal_carousel').observe('mouseout',startscroll);

  $('horizontal_carousel').onmouseover = function(){
stopscroll();
}
$('horizontal_carousel').onmouseout = function(){
startscroll();
}`

关于javascript - 在 Prototype-UI 中将循环滚动添加到我的轮播中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9620135/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com