Home > Software design >  fadein CSS animation issue
fadein CSS animation issue

Time:12-09

I'm trying to add animation using CSS3 but I'm having some issue. Can someone please help me?

.cuv h5 {
  font-size: 25px; 
  animation: fadein 1.5s;
  -moz-animation: fadein 2s; 
  -webkit-animation: fadein 2s; 
  -o-animation: fadein 2s; 
  
  
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<section >
    <div >
        <div >
            <div >
                <h5>Help Me</h5>
            </div>
        </div> 
    </div> 
</section>

CodePudding user response:

I got your issue. Please try with this. It would works.

@keyframes fadein {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
  • Related