I'm trying to add a class when the item comes into view
but apparently, I'm missing something that makes wow.js not working
here is what I have tried.
body{
display:flex;
justify-content:center;
}
.test {
width: 500px;
background-color: #000;
height:250px;
margin-top:auto;
color:#ffff;
padding-top:5%;
text-align:center;
}
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<body>
<div class="test wow bounceInUp">
Content to Reveal Here
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>