-
-
Save AlbertRAR/2abc1308eb6ad316123f787e3b073023 to your computer and use it in GitHub Desktop.
Permet d'animer des éléments HTML
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
class DOMAnimations { | |
/** | |
* Masque un élément avec un effet de repli | |
* @param {HTMLElement} element | |
* @param {Number} duration | |
* @returns {Promise<boolean>} | |
*/ | |
static slideUp (element, duration = 500) { | |
return new Promise(function (resolve, reject) { | |
element.style.height = element.offsetHeight + 'px' | |
element.style.transitionProperty = `height, margin, padding` | |
element.style.transitionDuration = duration + 'ms' | |
element.offsetHeight // eslint-disable-line no-unused-expressions | |
element.style.overflow = 'hidden' | |
element.style.height = 0 | |
element.style.paddingTop = 0 | |
element.style.paddingBottom = 0 | |
element.style.marginTop = 0 | |
element.style.marginBottom = 0 | |
window.setTimeout(function () { | |
element.style.display = 'none' | |
element.style.removeProperty('height') | |
element.style.removeProperty('padding-top') | |
element.style.removeProperty('padding-bottom') | |
element.style.removeProperty('margin-top') | |
element.style.removeProperty('margin-bottom') | |
element.style.removeProperty('overflow') | |
element.style.removeProperty('transition-duration') | |
element.style.removeProperty('transition-property') | |
resolve(false) | |
}, duration) | |
}) | |
} | |
/** | |
* Affiche un élément avec un effet de dépliement | |
* @param {HTMLElement} element | |
* @param {Number} duration | |
* @returns {Promise<boolean>} | |
*/ | |
static slideDown (element, duration = 500) { | |
return new Promise(function (resolve, reject) { | |
element.style.removeProperty('display') | |
let display = window.getComputedStyle(element).display | |
if (display === 'none') display = 'block' | |
element.style.display = display | |
let height = element.offsetHeight | |
element.style.overflow = 'hidden' | |
element.style.height = 0 | |
element.style.paddingTop = 0 | |
element.style.paddingBottom = 0 | |
element.style.marginTop = 0 | |
element.style.marginBottom = 0 | |
element.offsetHeight // eslint-disable-line no-unused-expressions | |
element.style.transitionProperty = `height, margin, padding` | |
element.style.transitionDuration = duration + 'ms' | |
element.style.height = height + 'px' | |
element.style.removeProperty('padding-top') | |
element.style.removeProperty('padding-bottom') | |
element.style.removeProperty('margin-top') | |
element.style.removeProperty('margin-bottom') | |
window.setTimeout(function () { | |
element.style.removeProperty('height') | |
element.style.removeProperty('overflow') | |
element.style.removeProperty('transition-duration') | |
element.style.removeProperty('transition-property') | |
}, duration) | |
}) | |
} | |
/** | |
* Affiche ou Masque un élément avec un effet de repli | |
* @param {HTMLElement} element | |
* @param {Number} duration | |
* @returns {Promise<boolean>} | |
*/ | |
static slideToggle (element, duration = 500) { | |
if (window.getComputedStyle(element).display === 'none') { | |
return this.slideDown(element, duration) | |
} else { | |
return this.slideUp(element, duration) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment