0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-20 12:52:19 +01:00
Bootstrap/docs/assets/js/bootstrap-carousel.js

203 lines
5.9 KiB
JavaScript
Raw Normal View History

2012-01-31 13:58:28 -08:00
/* ==========================================================
2013-05-16 11:06:30 -07:00
* carousel.js v3.0.0
2012-01-31 13:58:28 -08:00
* http://twitter.github.com/bootstrap/javascript.html#carousel
* ==========================================================
* Copyright 2012 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================== */
2013-05-16 11:06:30 -07:00
!function ($) { "use strict";
2013-05-16 11:06:30 -07:00
// CAROUSEL CLASS DEFINITION
// =========================
2012-01-31 13:58:28 -08:00
var Carousel = function (element, options) {
2012-12-19 23:25:25 -08:00
this.$indicators = this.$element.find('.carousel-indicators')
2013-05-16 11:06:30 -07:00
this.$element = $(element)
this.options = options
this.paused =
this.sliding =
this.interval =
this.$active =
this.$items = null
2012-02-24 21:51:39 -08:00
this.options.pause == 'hover' && this.$element
.on('mouseenter', $.proxy(this.pause, this))
.on('mouseleave', $.proxy(this.cycle, this))
2012-01-31 13:58:28 -08:00
}
2013-05-16 11:06:30 -07:00
Carousel.DEFAULTS = {
interval: 5000
, pause: 'hover'
}
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
Carousel.prototype.cycle = function (e) {
e || (this.paused = false)
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
this.interval && clearInterval(this.interval)
this.options.interval
&& !this.paused
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
2012-12-19 23:25:25 -08:00
2013-05-16 11:06:30 -07:00
return this
}
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
Carousel.prototype.getActiveIndex = function () {
this.$active = this.$element.find('.item.active')
this.$items = this.$active.parent().children()
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
return this.$items.index(this.$active)
}
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
Carousel.prototype.to = function (pos) {
var that = this
var activeIndex = this.getActiveIndex()
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
if (pos > (this.$items.length - 1) || pos < 0) return
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
if (this.sliding) return this.$element.one('slid', function () { that.to(pos) })
if (activeIndex == pos) return this.pause().cycle()
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
}
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
Carousel.prototype.pause = function (e) {
e || (this.paused = true)
if (this.$element.find('.next, .prev').length && $.support.transition.end) {
this.$element.trigger($.support.transition.end)
this.cycle(true)
2012-01-31 13:58:28 -08:00
}
2013-05-16 11:06:30 -07:00
this.interval = clearInterval(this.interval)
return this
}
Carousel.prototype.next = function () {
if (this.sliding) return
return this.slide('next')
}
Carousel.prototype.prev = function () {
if (this.sliding) return
return this.slide('prev')
}
Carousel.prototype.slide = function (type, next) {
var $active = this.$element.find('.item.active')
var $next = next || $active[type]()
var isCycling = this.interval
var direction = type == 'next' ? 'left' : 'right'
var fallback = type == 'next' ? 'first' : 'last'
var that = this
this.sliding = true
isCycling && this.pause()
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
$next = $next.length ? $next : this.$element.find('.item')[fallback]()
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
var e = $.Event('slide', { relatedTarget: $next[0], direction: direction })
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
if ($next.hasClass('active')) return
2012-01-31 13:58:28 -08:00
2013-05-16 11:06:30 -07:00
if (this.$indicators.length) {
this.$indicators.find('.active').removeClass('active')
this.$element.one('slid', function () {
var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
$nextIndicator && $nextIndicator.addClass('active')
2012-10-17 22:26:44 -07:00
})
2013-05-16 11:06:30 -07:00
}
2012-10-17 22:26:44 -07:00
2013-05-16 11:06:30 -07:00
if ($.support.transition && this.$element.hasClass('slide')) {
this.$element.trigger(e)
if (e.isDefaultPrevented()) return
$next.addClass(type)
$next[0].offsetWidth // force reflow
$active.addClass(direction)
$next.addClass(direction)
this.$element.one($.support.transition.end, function () {
$next.removeClass([type, direction].join(' ')).addClass('active')
$active.removeClass(['active', direction].join(' '))
that.sliding = false
setTimeout(function () { that.$element.trigger('slid') }, 0)
})
} else {
this.$element.trigger(e)
if (e.isDefaultPrevented()) return
$active.removeClass('active')
$next.addClass('active')
this.sliding = false
this.$element.trigger('slid')
2012-01-31 13:58:28 -08:00
}
2013-05-16 11:06:30 -07:00
isCycling && this.cycle()
return this
2012-01-31 13:58:28 -08:00
}
2013-05-16 11:06:30 -07:00
// CAROUSEL PLUGIN DEFINITION
// ==========================
2012-01-31 13:58:28 -08:00
var old = $.fn.carousel
$.fn.carousel = function (option) {
2012-01-31 13:58:28 -08:00
return this.each(function () {
2013-05-16 11:06:30 -07:00
var $this = $(this)
var data = $this.data('carousel')
var options = $.extend({}, Carousel.DEFAULTS, typeof option == 'object' && option)
var action = typeof option == 'string' ? option : options.slide
2012-01-31 13:58:28 -08:00
if (!data) $this.data('carousel', (data = new Carousel(this, options)))
if (typeof option == 'number') data.to(option)
2012-06-02 21:01:45 -07:00
else if (action) data[action]()
2012-12-20 13:41:08 -08:00
else if (options.interval) data.pause().cycle()
2012-01-31 13:58:28 -08:00
})
}
$.fn.carousel.Constructor = Carousel
2013-05-16 11:06:30 -07:00
// CAROUSEL NO CONFLICT
// ====================
$.fn.carousel.noConflict = function () {
$.fn.carousel = old
return this
}
2013-05-16 11:06:30 -07:00
// CAROUSEL DATA-API
// =================
2012-01-31 13:58:28 -08:00
$(document).on('click.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
var $this = $(this), href
2013-05-16 11:06:30 -07:00
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
var options = $.extend({}, $target.data(), $this.data())
var slideIndex
$target.carousel(options)
if (slideIndex = $this.attr('data-slide-to')) {
$target.data('carousel').pause().to(slideIndex).cycle()
}
e.preventDefault()
2012-01-31 13:58:28 -08:00
})
}(window.jQuery);