【发布时间】:2014-04-16 14:34:03
【问题描述】:
我在这里使用 Elastislide 垂直轮播
http://tympanus.net/codrops/2012/10/29/elastislide-revised/
这是垂直的
http://tympanus.net/Development/Elastislide/index2.html
我已经更改了轮播的高度和其中的
$.Elastislide.defaults = {
// orientation 'horizontal' || 'vertical'
orientation : 'vertical',
// sliding speed
speed : 500,
// sliding easing
easing : 'ease-in-out',
// the minimum number of items to show.
// when we resize the window, this will make sure minItems are always shown
// (unless of course minItems is higher than the total number of elements)
minItems : 4,
// index of the current item (left most item of the carousel)
start : 0,
// click item callback
onClick : function( el, position, evt ) { return false; },
onReady : function() { return false; },
onBeforeSlide : function() { return false; },
onAfterSlide : function() { return false; }
};
【问题讨论】:
标签: jquery carousel vertical-scroll elastislide