Dashboard sipadu mbip
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12345678910111213141516171819
  1. "use strict";
  2. $(document).ready(function(){
  3. $('.js--triggerAnimation').on('click',function(e){
  4. e.preventDefault();
  5. var anim = $('.js--animations').val();
  6. testAnim(anim);
  7. });
  8. $('.js--animations').on('change',function(){
  9. var anim = $(this).val();
  10. testAnim(anim);
  11. });
  12. function testAnim(x) {
  13. $('#animationSandbox').removeClass().addClass(x + ' animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){
  14. $(this).removeClass();
  15. });
  16. };
  17. });