Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

fadein CSS animation issue

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 class="cuv">
    <div class="content">
        <div class="container">
            <div class="row">
                <h5>Help Me</h5>
            </div>
        </div> 
    </div> 
</section>

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

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

@keyframes fadein {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading