MIF_E31220215/public/assets_admin/assets/js/animation.js

19 lines
622 B
JavaScript

"use strict";
$(document).ready(function(){
$('.js--triggerAnimation').on('click',function(e){
e.preventDefault();
var anim = $('.js--animations').val();
testAnim(anim);
});
$('.js--animations').on('change',function(){
var anim = $(this).val();
testAnim(anim);
});
function testAnim(x) {
$('#animationSandbox').removeClass().addClass(x + ' animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){
$(this).removeClass();
});
};
});