Skip to main content

Posts

Showing posts with the label css animation

How to make attractive animation with css

How to make an attractive animation with CSS? So, here I have attached the code which we'll use in this tutorial. CSS Code:    @keyframes shake {   10%, 90% {     transform: translate3d(-1px, 0, 0);   }   20%, 80% {     transform: translate3d(2px, 0, 0);   }   30%, 50%, 70% {     transform: translate3d(-4px, 0, 0);   }   40%, 60% {     transform: translate3d(4px, 0, 0);   }   }   @keyframes bounce {   10%, 90% {     transform: translate3d(0, 5px, 0);   }   20%, 80% {     transform: translate3d(0, 3px, 0);   }   30%, 50%, 70% {     transform: translate3d(0, 7px, 0);   }   40%, 60% {     transform: translate3d(0, 2px, 0);   }   }   @keyframes circleanimation {     0%{       transform: sca...