AnimaFlow CSS Studio

    A powerful tool for creating and previewing CSS animations with real-time preview. Customize your animations with various presets and get the generated code instantly.

    Made byLeo
    1s
    0s

    Export Animation

    Add the CSS to your stylesheet
    .animated-element {
      opacity: 0;
      
      animation: fade 1s ease-in-out 0s;
      
    }
    
    @keyframes fade {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }