Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图通过一次显示 5 个项目并一次移动 4 个项目来修改 jcarousel,但是,实现以下代码:
$('#mycarousel').jcarousel({ scroll: 4 });
仍然一次只能移动 3 个项目。
这有效:
$('#mycarousel').jcarousel({ scroll: 1 });
通过仅移动 1 个项目,但一旦我超过 3 个,它就不再移动了。
有任何想法吗?