0

我是 jquery 的新手,在最终回答这个问题之前做了很多谷歌搜索。

我正在尝试在网页中安装插件,但此轮播没有响应。 我的首选是带有水平滚动条的响应式轮播。 有很多轮播,但它们都有项目符号或缩略图或用于滚动的数字,这是我不想要的。


  • 是否有任何程序可以在现有轮播中使用滚动条而不是项目符号或缩略图?

  • jquery中是否有包含水平滚动条的良好响应滑块插件?

  • 我不能将引用的轮播链接转换为响应式链接吗?

    感谢您的帮助!(:

4

1 回答 1

1

In jquery.horizontal.scroll.css there are some default styles defined, also witdth of carousel. You can override this styles with your own styles:

#horiz_container_outer  {
    width: auto;
}

#scrollbar, #track {
    width: 100%;
}

That makes carousel to fit 100% width of the page.

You can also wrap it with div, to control its width easily. See my example http://jsfiddle.net/mattydsw/XKLEB/

Is it responsive in your definition or you meant something else?

于 2013-06-28T09:04:20.793 回答