I am using a scrollable div with wow js like:
<div class="content-container">
<h1>Some Content</h1>
<h1>Some Content</h1>
<h1>Some Content</h1>
<h1>Some Content</h1>
<h1>Some Content</h1>
<h1>Some Content</h1>
<h1 class="wow bounceIn">Some Content</h1>
</div>
My CSS looks like this:
.content-container
height: 20px;
overflow-y:scroll;
Problem is wow.js
is not detecting the scrolls I make in the div
I found other issues like this and tried
wow = new WOW({scrollContainer:".content-container"});
wow.init()
But this is not working so is there any way I can make this work?