Wednesday, May 12, 2021

CSS Rise Animation

 


        Code for the image

        img {
margin:10px;
box-shadow: 10px 5px 5px rgb(3, 161, 0);
}
img:hover {
animation-name: hover-up;
   animation-duration: 0.25s;
margin-top:0px;
}


      Code for the animation
      @keyframes hover-up {
0% {margin-top:10px;}
100% {margin-top:0px;}
}

No comments:

Post a Comment