twbs--bootstrap/js/transition.js

49 lines
1.5 KiB
JavaScript
Raw Normal View History

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