是否可以在 Twitter Bootstrap 上实现垂直轮播滑动?在 bootstrap.js 我发现这个
, slide: function (type, next) {
var $active = this.$element.find('.active')
, $next = next || $active[type]()
, isCycling = this.interval
, direction = type == 'next' ? 'left' : 'right'
, fallback = type == 'next' ? 'first' : 'last'
, that = this
我试图将方向更改为“向上”和“向下”,但滑动不起作用。