animate.js

Belirli bir elemana CSS animasyonu uygulamanız için etiket ekler ve çıkarır.
“Apply a CSS animation to an element.”

Tüm modern tarayıcılarda ve IE10+ ‘da çalışır.
“ClassList Polyfill”(Yakında eklenecek) ile desteği IE9 yükseltebilirsiniz.

How It Works

Lütfen bu konu ile ilgili yazılmış blog yazısını kontrol edin yada diğer yardımcı fonksiyonlara göz atın.

The Function

/*!
 * Apply a CSS animation to an element
 * (c) 2018 Chris Ferdinandi, MIT License, https://gomakethings.com
 * @param  {Node}    elem      The element to animate
 * @param  {String}  animation The type of animation to apply
 * @param  {Boolean} hide      If true, apply the [hidden] attribute after the animation is done
 */
var animate = function (elem, animation, hide) {

	// If there's no element or animation, do nothing
	if (!elem || !animation) return;

	// Remove the [hidden] attribute
	elem.removeAttribute('hidden');

	// Apply the animation
	elem.classList.add(animation);

	// Detect when the animation ends
	elem.addEventListener('animationend', function endAnimation (event) {

		// Remove the animation class
		elem.classList.remove(animation);

		// If the element should be hidden, hide it
		if (hide) {
			elem.setAttribute('hidden', 'true');
		}

		// Remove this event listener
		elem.removeEventListener('animationend', endAnimation, false);

	}, false);

};