开发者

How to control JCarousel Vertical Scroller speed?

开发者 https://www.devze.com 2023-01-16 10:25 出处:网络
How to control JCarousel V开发者_如何转开发ertical Scroller speed?Try animation: 1600. I think this will help you.

How to control JCarousel V开发者_如何转开发ertical Scroller speed?


Try animation: 1600. I think this will help you.
For example:

jQuery('#anyid').jcarousel({
    auto: 3,
    vertical: true,
    wrap: 'circular',
    scroll: 2,
    animation: 1600
});


This really isn't a PHP question, but doing a quick google search I found the documentation on jcarousel.

doc link

Property to change it "animation".

The speed of the scroll animation as string in jQuery terms ("slow" or "fast") or milliseconds as integer (See jQuery Documentation). If set to 0, animation is turned off.


Nice working it very helpful post found here. Smoothly scrolling images slider i changes
in coding and give them a new look...

jQuery('#anyid').jcarousel({ scroll: 1, auto: 2, animation: 1500, wrap: 'last', initCallback: _init_carousel, buttonNextHTML: null, buttonPrevHTML: null });

0

精彩评论

暂无评论...
验证码 换一张
取 消