-
-
Save Pushplaybang/6b625dd6909ad9f828af70252d956acd to your computer and use it in GitHub Desktop.
Do a CSS transition and resolve promise when complete
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
const transitionToPromise = (selector, property, value) => | |
new Promise(resolve => { | |
const el = docxument.querySelector(selector); | |
el.style[property] = value; | |
const transitionEnded = e => { | |
if (e.propertyName !== property) { | |
return; | |
} | |
el.removeEventListener('transitionend', transitionEnded); | |
resolve(); | |
} | |
el.addEventListener('transitionend', transitionEnded); | |
}); | |
/* | |
// Usage | |
transitionToPromise('.mainNav', 'opacity', '1') | |
.then(() => alert('Transition done')); | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment