0

我正在使用 jquery plusslider,但问题是它在 Firefox 中工作正常,但滑块在谷歌浏览器中不起作用。同样,每当我将滑块类型用作推子时,滑块在两者中都可以正常工作,但我想将滑块类型用作滑块并且它不工作。问题是什么。提前感谢您的任何帮助/建议和您的时间。谢谢你..

$(document).ready(function() {
    $('#slider').plusSlider({ 
        sliderEasing: 'easeInOutExpo', // Anything other than 'linear' and 'swing' requires the easing plugin
        paginationBefore: true,
        createArrows: true,
        width: 1920,
        height:580,
        sliderType: 'slider', // Choose whether the carousel is a 'slider' or a 'fader'
        displayTime: 5000
    });
4

1 回答 1

0

请参阅编辑它将在 Chrome 中工作

$('#slider').plusSlider({
        sliderEasing: 'easeInOutExpo', // Anything other than 'linear' and 'swing' requires the easing plugin
        paginationThumbnails: true,
        sliderType: 'slider' // Choose whether the carousel is a 'slider' or a 'fader'
    });​

你错过了最后});

于 2012-09-28T05:34:46.237 回答