Last active
September 18, 2017 10:02
-
-
Save fbedussi/09e0e688c108a7ca53c3 to your computer and use it in GitHub Desktop.
Return the transition duration (in millisecond) for the specified property on the specified element
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @desc returns the duration in milliseconds of a CSS transition on the element $el for the given property | |
* @param {type} $el | |
* @param {type} property = 'transform' | |
* @returns {type} | |
*/ | |
function getTransitionDuration($el, property = 'transform') { | |
return $el | |
.css('transition') | |
.split(',') | |
.filter((transition) => transition.match(new RegExp(property + '|all'))) | |
.reduce((acc, i) => { | |
var time = [].concat(i.match(/\d+\.\d+s/)).reduce((acc, i) => i, 0); | |
if (!time) { | |
return 0; | |
} | |
return parseFloat(time) * 1000; | |
}, 0) | |
; | |
} | |
export default getTransitionDuration; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment