CSS Animation

Use @keyframes and animation for smooth animations.

Code Example


 
    .box {
      width: 100px; height: 100px; background: red;
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-50px); }
    }

  
Animation Demo