CSS Animation onClick

前端 未结 8 439
忘了有多久
忘了有多久 2020-11-30 22:25

How can I get a CSS Animation to play with a JavaScript onClick? I currently have:

.classname {
  -webkit-animation-name: cssAnimation;
  -webkit-animation-d         


        
8条回答
  •  离开以前
    2020-11-30 22:56

    You can do that by using following code

    $('#button_id').on('click', function(){
    $('#element_want_to_target').addClass('.animation_class');});
    

提交回复
热议问题