253
Views
2
Comments
Solved
Add Animation to Button
Question


Do you know how to add animation to the buttons?

Like the move og the button on the below website....

https://ideahacker.net/2014/01/30/7174/Like 


I was wondering if you could tell me about anything about animation and the CSS code.


Best regards,

FlashEnglish.oap
2018-08-26 20-34-32
Pankaj pant
Solution

Tsubasa Yoshikawa wrote:


Do you know how to add animation to the buttons?

Like the move og the button on the below website....

https://ideahacker.net/2014/01/30/7174/Like 


I was wondering if you could tell me about anything about animation and the CSS code.


Best regards,

As per your query you should write the CSS like below for the similar animation.


.button(class used in your button .button for refrence):hover {


animation: rumble 0.12s linearinfinite;  

 -webkit-animation: rumble 0.12s linearinfinite;



}


Regards,

Pankaj


2021-02-02 11-55-27
Tushar Panpaliya

refer to this and try to implement something similar in outsystems. 


https://codepen.io/a_noodles/pen/avXjZb

2018-08-26 20-34-32
Pankaj pant
Solution

Tsubasa Yoshikawa wrote:


Do you know how to add animation to the buttons?

Like the move og the button on the below website....

https://ideahacker.net/2014/01/30/7174/Like 


I was wondering if you could tell me about anything about animation and the CSS code.


Best regards,

As per your query you should write the CSS like below for the similar animation.


.button(class used in your button .button for refrence):hover {


animation: rumble 0.12s linearinfinite;  

 -webkit-animation: rumble 0.12s linearinfinite;



}


Regards,

Pankaj


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.