Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

animation.js 640B

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