Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. });