0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/js/transition.js

50 lines
1.5 KiB
JavaScript
Raw Normal View History

2013-05-22 04:30:33 +02:00
/* ========================================================================
2014-02-13 10:12:26 +01:00
* Bootstrap: transition.js v3.1.1
* http://getbootstrap.com/javascript/#transitions
2013-05-22 04:30:33 +02:00
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
2013-05-22 04:30:33 +02:00
* ======================================================================== */
2014-01-01 15:42:41 +01:00
+function ($) {
'use strict';
2013-05-17 02:18:15 +02:00
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
// ============================================================
2013-05-16 20:06:30 +02:00
function transitionEnd() {
2013-05-17 02:18:15 +02:00
var el = document.createElement('bootstrap')
2012-03-29 22:51:23 +02:00
2013-05-16 20:06:30 +02:00
var transEndEventNames = {
2014-03-09 10:10:15 +01:00
WebkitTransition : 'webkitTransitionEnd',
MozTransition : 'transitionend',
OTransition : 'oTransitionEnd otransitionend',
transition : 'transitionend'
2013-05-17 02:18:15 +02:00
}
2012-03-29 21:35:06 +02:00
2013-05-16 20:06:30 +02:00
for (var name in transEndEventNames) {
if (el.style[name] !== undefined) {
2013-05-17 02:18:15 +02:00
return { end: transEndEventNames[name] }
2012-01-17 19:32:25 +01:00
}
2013-05-16 20:06:30 +02:00
}
2013-12-24 21:40:24 +01:00
return false // explicit for ie8 ( ._.)
2013-05-16 20:06:30 +02:00
}
2012-03-29 22:51:23 +02:00
// http://blog.alexmaccaw.com/css-transitions
$.fn.emulateTransitionEnd = function (duration) {
2014-03-17 08:12:55 +01:00
var called = false
var $el = this
2013-07-29 14:23:01 +02:00
$(this).one($.support.transition.end, function () { called = true })
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
setTimeout(callback, duration)
return this
}
2013-05-16 20:06:30 +02:00
$(function () {
2013-05-17 02:18:15 +02:00
$.support.transition = transitionEnd()
})
2012-02-14 03:41:02 +01:00
}(jQuery);