CSS - Fade Out Left Big Effect



Description

The image come or cause to come gradually into or out of view, or to merge into another shot.

Syntax

 @keyframes fadeOutLeftBig { 0% { opacity: 1; transform: translateX(0); } 100% { opacity: 0; transform: translateX(-2000px); } } 

Parameters

  • Transform − Transform applies to 2d and 3d transformation to an element.

  • Opacity − Opacity applies to an element to make translucence.

Example

 <!DOCTYPE html> <html lang="en"> <head> <style> .folbAnimated { background-image: url(/html/images/test.png); background-repeat: no-repeat; background-position: left top; padding-top: 95px; margin-bottom: 60px; -webkit-animation-duration: 3s; animation-duration: 3s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } @-webkit-keyframes fadeOutLeftBig { 0% { opacity: 1; -webkit-transform: translateX(700px); } 100% { opacity: 0; -webkit-transform: translateX(-20px); } } @keyframes fadeOutLeftBig { 0% { opacity: 1; transform: translateX(700px); } 100% { opacity: 0; transform: translateX(-20px); } } .fadeOutLeftBig { -webkit-animation-name: fadeOutLeftBig; animation-name: fadeOutLeftBig; } </style> </head> <body> <div id="folbAnimates" class="folbAnimated"></div> <button onclick="folb()">Click</button> <script> function folb() { document.getElementById("folbAnimates").classList.add('fadeOutLeftBig'); } </script> </body> </html> 

Output

It will produce the following result

css_animation.htm
Advertisements