| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  | /* ========================================================== | 
					
						
							|  |  |  |  * bootstrap-carousel.js v2.0.0 | 
					
						
							| 
									
										
										
										
											2012-01-25 03:08:03 +08:00
										 |  |  |  * http://twitter.github.com/bootstrap/javascript.html#carousel
 | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  |  * ========================================================== | 
					
						
							| 
									
										
										
										
											2012-01-15 15:28:48 +08:00
										 |  |  |  * Copyright 2012 Twitter, Inc. | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08: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" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  /* CAROUSEL CLASS DEFINITION | 
					
						
							|  |  |  |   * ========================= */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |   var Carousel = function (element, options) { | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     this.$element = $(element) | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |     this.options = $.extend({}, $.fn.carousel.defaults, options) | 
					
						
							|  |  |  |     this.options.slide && this.slide(this.options.slide) | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Carousel.prototype = { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     cycle: function () { | 
					
						
							| 
									
										
										
										
											2012-01-03 14:57:04 +08:00
										 |  |  |       this.interval = setInterval($.proxy(this.next, this), this.options.interval) | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       return this | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |   , to: function (pos) { | 
					
						
							|  |  |  |       var $active = this.$element.find('.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])) | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |   , pause: function () { | 
					
						
							|  |  |  |       clearInterval(this.interval) | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       return this | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |   , next: function () { | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |       if (this.sliding) return | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       return this.slide('next') | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |   , prev: function () { | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |       if (this.sliding) return | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       return this.slide('prev') | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |   , slide: function (type, next) { | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |       var $active = this.$element.find('.active') | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |         , $next = next || $active[type]() | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |         , isCycling = this.interval | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |         , direction = type == 'next' ? 'left' : 'right' | 
					
						
							|  |  |  |         , fallback  = type == 'next' ? 'first' : 'last' | 
					
						
							|  |  |  |         , that = this | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |       this.sliding = true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       isCycling && this.pause() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |       $next = $next.length ? $next : this.$element.find('.item')[fallback]() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (!$.support.transition && this.$element.hasClass('slide')) { | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |         this.$element.trigger('slide') | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |         $active.removeClass('active') | 
					
						
							|  |  |  |         $next.addClass('active') | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |         this.sliding = false | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |         this.$element.trigger('slid') | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |       } else { | 
					
						
							|  |  |  |         $next.addClass(type) | 
					
						
							|  |  |  |         $next[0].offsetWidth // force reflow
 | 
					
						
							|  |  |  |         $active.addClass(direction) | 
					
						
							|  |  |  |         $next.addClass(direction) | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |         this.$element.trigger('slide') | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |         this.$element.one($.support.transition.end, function () { | 
					
						
							|  |  |  |           $next.removeClass([type, direction].join(' ')).addClass('active') | 
					
						
							|  |  |  |           $active.removeClass(['active', direction].join(' ')) | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |           that.sliding = false | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |           setTimeout(function () { that.$element.trigger('slid') }, 0) | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |         }) | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |       isCycling && this.cycle() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       return this | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  /* CAROUSEL PLUGIN DEFINITION | 
					
						
							|  |  |  |   * ========================== */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   $.fn.carousel = function ( option ) { | 
					
						
							|  |  |  |     return this.each(function () { | 
					
						
							|  |  |  |       var $this = $(this) | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |         , data = $this.data('carousel') | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |         , options = typeof option == 'object' && option | 
					
						
							|  |  |  |       if (!data) $this.data('carousel', (data = new Carousel(this, options))) | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |       if (typeof option == 'number') data.to(option) | 
					
						
							|  |  |  |       else if (typeof option == 'string' || (option = options.slide)) data[option]() | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       else data.cycle() | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  |     }) | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |   $.fn.carousel.defaults = { | 
					
						
							| 
									
										
										
										
											2012-01-03 14:57:04 +08:00
										 |  |  |     interval: 5000 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 15:28:48 +08:00
										 |  |  |   $.fn.carousel.Constructor = Carousel | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  /* CAROUSEL DATA-API | 
					
						
							|  |  |  |   * ================= */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   $(function () { | 
					
						
							|  |  |  |     $('body').on('click.carousel.data-api', '[data-slide]', function ( e ) { | 
					
						
							|  |  |  |       var $this = $(this) | 
					
						
							|  |  |  |         , $target = $($this.attr('data-target') || $this.attr('href')) | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |         , options = !$target.data('modal') && $.extend({}, $target.data(), $this.data()) | 
					
						
							|  |  |  |       $target.carousel(options) | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | }( window.jQuery ) |