twbs--bootstrap/js/bootstrap-carousel.js

176 lines
5.1 KiB
JavaScript
Raw Normal View History

2011-12-01 06:05:09 +00:00
/* ==========================================================
2012-10-30 04:00:53 +00:00
* bootstrap-carousel.js v2.2.0
2012-01-24 19:08:03 +00:00
* http://twitter.github.com/bootstrap/javascript.html#carousel
2011-12-01 06:05:09 +00:00
* ==========================================================
2012-01-15 07:28:48 +00:00
* Copyright 2012 Twitter, Inc.
2011-12-01 06:05:09 +00:00
*
* 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.
* ========================================================== */
!function ($) {
"use strict"; // jshint ;_;
2011-12-01 06:05:09 +00:00
/* CAROUSEL CLASS DEFINITION
* ========================= */
var Carousel = function (element, options) {
2012-01-03 00:04:01 +00:00
this.$element = $(element)
this.options = options
this.options.slide && this.slide(this.options.slide)
2012-02-25 05:51:39 +00:00
this.options.pause == 'hover' && this.$element
.on('mouseenter', $.proxy(this.pause, this))
.on('mouseleave', $.proxy(this.cycle, this))
2011-12-01 06:05:09 +00:00
}
Carousel.prototype = {
cycle: function (e) {
if (!e) this.paused = false
this.options.interval
&& !this.paused
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
return this
2012-01-03 00:04:01 +00:00
}
, to: function (pos) {
var $active = this.$element.find('.item.active')
, children = $active.parent().children()
, activePos = children.index($active)
, that = this
if (pos > (children.length - 1) || pos < 0) return
if (this.sliding) {
return this.$element.one('slid', function () {
that.to(pos)
})
}
if (activePos == pos) {
return this.pause().cycle()
}
return this.slide(pos > activePos ? 'next' : 'prev', $(children[pos]))
}
, pause: function (e) {
if (!e) this.paused = true
if (this.$element.find('.next, .prev').length && $.support.transition.end) {
this.$element.trigger($.support.transition.end)
this.cycle()
}
2012-01-03 00:04:01 +00:00
clearInterval(this.interval)
this.interval = null
return this
2012-01-03 00:04:01 +00:00
}
2012-01-03 06:30:57 +00:00
, next: function () {
if (this.sliding) return
return this.slide('next')
2012-01-03 00:04:01 +00:00
}
2012-01-03 06:30:57 +00:00
, prev: function () {
if (this.sliding) return
return this.slide('prev')
2012-01-03 06:30:57 +00:00
}
2012-01-03 00:04:01 +00:00
, slide: function (type, next) {
2012-06-08 13:19:08 +00:00
var $active = this.$element.find('.item.active')
, $next = next || $active[type]()
, isCycling = this.interval
2012-01-03 06:30:57 +00:00
, direction = type == 'next' ? 'left' : 'right'
, fallback = type == 'next' ? 'first' : 'last'
, that = this
2012-10-18 05:26:44 +00:00
, e
2012-01-03 06:30:57 +00:00
this.sliding = true
isCycling && this.pause()
2012-01-03 06:30:57 +00:00
$next = $next.length ? $next : this.$element.find('.item')[fallback]()
2012-10-18 05:26:44 +00:00
e = $.Event('slide', {
relatedTarget: $next[0]
})
2012-02-21 06:01:38 +00:00
if ($next.hasClass('active')) return
2012-03-20 04:39:39 +00:00
if ($.support.transition && this.$element.hasClass('slide')) {
this.$element.trigger(e)
if (e.isDefaultPrevented()) return
2012-01-03 06:30:57 +00:00
$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)
2012-01-03 06:30:57 +00:00
})
2012-03-20 04:39:39 +00:00
} else {
this.$element.trigger(e)
if (e.isDefaultPrevented()) return
2012-03-20 04:39:39 +00:00
$active.removeClass('active')
$next.addClass('active')
this.sliding = false
this.$element.trigger('slid')
2012-01-03 06:30:57 +00:00
}
isCycling && this.cycle()
return this
2012-01-03 00:04:01 +00:00
}
2011-12-01 06:05:09 +00:00
}
/* CAROUSEL PLUGIN DEFINITION
* ========================== */
$.fn.carousel = function (option) {
2011-12-01 06:05:09 +00:00
return this.each(function () {
var $this = $(this)
, data = $this.data('carousel')
, options = $.extend({}, $.fn.carousel.defaults, typeof option == 'object' && option)
2012-06-03 04:01:45 +00:00
, action = typeof option == 'string' ? option : options.slide
if (!data) $this.data('carousel', (data = new Carousel(this, options)))
if (typeof option == 'number') data.to(option)
2012-06-03 04:01:45 +00:00
else if (action) data[action]()
else if (options.interval) data.cycle()
2011-12-01 06:05:09 +00:00
})
}
$.fn.carousel.defaults = {
2012-01-03 06:57:04 +00:00
interval: 5000
2012-02-25 05:51:39 +00:00
, pause: 'hover'
}
$.fn.carousel.Constructor = Carousel
2011-12-01 06:05:09 +00:00
2012-01-03 06:30:57 +00:00
/* CAROUSEL DATA-API
* ================= */
$(document).on('click.carousel.data-api', '[data-slide]', function (e) {
var $this = $(this), href
, $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
, options = !$target.data('carousel') && $.extend({}, $target.data(), $this.data())
$target.carousel(options)
e.preventDefault()
2012-01-03 06:30:57 +00:00
})
}(window.jQuery);