I have implemented animate.css
for a login form, but it is not behaving as desired. Currently, I am utilizing the fadeInDown
animation, however, it is fading in from a greater distance than intended. I would prefer it to fade in from just around 20px below the viewport. I hope this explanation makes sense.
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.1/animate.min.css" rel="stylesheet" />
<div id="login">
<div class="row animated fadeInDown">
<img src="logo.png"/>
<input type="text">
<input type="password">
</div>
</div>