1

我陷入了一个问题...

Jq Scrollingcarousel 参考: http: //www.convergent-evolution.co.uk/resources/jquery-plugins/scrolling-carousel/

这是我正在做的过程...... http://jsfiddle.net/BnwLh/1/

问题是,在我的网站中,除了在 IE7 中之外,它运行平稳......它仍然在 ie7 中......

在上面的 jsfiddle 链接中,目前无法正常工作.. 任何人都可以修复它吗?


在这个轮播中,我正在尝试为其添加更多功能,因此我向左和向右添加了两个按钮...如果您将鼠标悬停在左侧,它应该向左移动,如果您将鼠标悬停在右侧,它应该向右移动...

我正在尝试使用此代码:

$("a.prev-go").mouseover(function() {
$('#carousel-demo1').scrollingCarousel();
});
$("a.next-go").mouseover(function() {
$('#carousel-demo1').scrollingCarousel(); 
});

http://jsfiddle.net/xLhmS/1/

但它不适合我....

4

1 回答 1

1
    $(document).ready(function() {
     $('#carousel-demo1').scrollingCarousel( {
        scrollerAlignment : "horizontal",
        autoScroll : true,
        autoScrollSpeed : 10000,
        scrollSpeed : "slow",
        scrollerOffset : 0,
        looped : true // for IE7 i put it to the end of the code and it worked well.
    }); 
}); // you forgot to add it at the end of the JQuery

工作示例 Jsfiddle

于 2012-06-01T09:25:41.770 回答