Animations on Buttons

0
I want to add animations on buttons placed on application landing page.
asked
2 answers
1

You can upload an image in gif format and assign for a button or a static image. or you can assign a container by creating an animation with CSS

answered
0

.your-button-class {  animation: scaleUp 1s infinite;}

@keyframes scaleUp { 

0% {    transform: scale(1);  } 

50% {    transform: scale(1.2);  } 

100% {    transform: scale(1);  }}

 

Adjust the animation duration (1s in this example) and other properties as needed for your desired effect.

 

 

 

 

 

 

answered