CSS Animation


Css Animation Slide From Top

This type of css help you to make a single one time effect. If you want your website name came from top by sliding when your webpage will open. Just find out what is the class name of your site header and Change into the given code. For Example suppose your website header give as header-Logo just replace with lh-top to header-Logo. Go to your wordpress or blogger and include aditional css.  


.lh-top{
      position:relative;
      animation:animatetop 0.4s;
}
 
@keyframes animatetop{
     from{top:-300px;opacity:0} 
     to{top:0;opacity:1}
}
 

Css Animation Slide From Left

This type of css help you to make a single one time effect. If you want your website name came from left by sliding when your webpage will open. Just find out what is the class name of your site header and Change into the given code. For Example suppose your website header give as header-Logo just replace with lh-left to header-Logo. Go to your wordpress or blogger and include aditional css.

.lh-left{
     position:relative;
     animation:animateleft 0.4s;
}
 
@keyframes animateleft{
    from{left:-300px;opacity:0} 
     to{left:0;opacity:1}
}
 

Css Animation Slide From Right

This type of css help you to make a single one time effect. If you want your website name came from right by sliding when your webpage will open. Just find out what is the class name of your site header and Change into the given code. For Example suppose your website header give as header-Logo just replace with lh-right to header-Logo. Go to your wordpress or blogger and include aditional css.

.lh-right{
       position:relative;animation:
       animateright 0.4s;
}
@keyframes animateright{
      from{right:-300px;opacity:0} 
      to{right:0;opacity:1}
}
 

Css Animation Slide From Bottom

This type of css help you to make a single one time effect. If you want your website name came from bottom by sliding when your webpage will open. Just find out what is the class name of your site header and Change into the given code. For Example suppose your website header give as header-Logo just replace with lh-bottom to header-Logo. Go to your wordpress or blogger and include aditional css.


.lh-bottom{
     position:relative;
     animation:animatebottom 0.4s;
}
@keyframes animatebottom{
    from{bottom:-300px;opacity:0} 
    to{bottom:0;opacity:1}
}
 

Css Animation Slide From Zoom

This type of css help you to make a single one time effect. If you want your website name came from Zoom by sliding when your webpage will open. Just find out what is the class name of your site header and Change into the given code. For Example suppose your website header give as header-Logo just replace with lh-zoom to header-Logo. Go to your wordpress or blogger and include aditional css.


.lh-zoom
animation:animatezoom 0.6s;
}
@keyframes animatezoom{
       from{transform:scale(0)}
       to{transform:scale(1)}
}
 

Css Spin Animation

 This type of css help you to make a single one time effect. If you want your website Logo or Text always spin when your webpage will open. Just find out what is the class name of your site header and Change into the given code. For Example suppose your website header give as header-Logo just replace with lh-spin to header-Logo. Go to your wordpress or blogger and include aditional css.
 
.lh-spin{
animation:lh-spin 2s infinite linear;
     }
@keyframes lh-spin{
0%{transform:rotate(0deg)}
100%{transform:rotate(359deg)}
 }
 

Css Fade in Animation

This type of css help you to make a single one time effect. If you want your website name came from fading by sliding when your webpage will open. Just find out what is the class name of your site header and Change into the given code. For Example suppose your website header give as header-Logo just replace with lh-animate-fading to header-Logo. Go to your wordpress or blogger and include aditional css.

.lh-animate-fading{
animation:fading 10s infinite;
      }
@keyframes fading{
0%{opacity:0}
50%{opacity:1}
100%{opacity:0}
 }
 

Css Animation Opacity

This type of css help you to make a single one time effect. If you want your website name came from Opacity by sliding when your webpage will open. Just find out what is the class name of your site header and Change into the given code. For Example suppose your website header give as header-Logo just replace with .lh-animate-opacity to header-Logo. Go to your wordpress or blogger and include aditional css.

.lh-animate-opacity{
animation:opac 0.8s;
    }
@keyframes opac{
from{opacity:0} 
to{opacity:1}


<div class="choose from above">
  <h1>LearningHomeBD Animation !</h1>
  <p>CSS Animation Slide From TOP│Bottom│Left│Right│zoom│spin│fading│opacity </p>
</div>