如何修改 jQuery Carousel 以垂直显示而不是水平显示
我正在尝试获取此 jQuery 功能轮播 - http://www.bkosborne.com/jquery- feature-carousel 显示垂直而不是水平。我尝试通过改变 #carousel-container 和 #carousel 的宽度和高度来使用 CSS,但并没有真正正常工作(效果显示在一条连续的行中,而不是旋转)。我认为需要在 jquery.featureCarousel.js 文件中进行一些编辑,但我不确定要编辑什么。希望有人能帮忙吗?
提前致谢。
I'm trying to get this jQuery Feature Carousel - http://www.bkosborne.com/jquery-feature-carousel to display vertical instead of horizontal. I tried playing around with the CSS by altering the width and height of the #carousel-container and #carouse it but didn’t really work properly (the effects display in one continuous line instead of rotating). I think it would require some editing in the jquery.featureCarousel.js file but I'm not sure what to edit. Hoping someone can help?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在水平轮播菜单 JS 中有一个变量
direction:"horizontal"
所以我认为你需要改变
direction:"vertical"
只是尝试一下......可能是需要的。
谢谢
In Horizontal carousel menu JS there is one variable
direction:"horizontal"
so i think you need to change
direction:"vertical"
Just Try it...may be needful.
Thanks