javascript - fullpage.js effect in a container div -


from quick search here , in google realised not possible put fullpage.js in container, hence name fullpage.js

unfortunately have find solution project. want normal scroll on entire website, specific div should have fullpage.js "slideshow" effect, when scroll bit, whole section moving other direction. tried doing myself lot of javascript calculations (scroll direction, binding , unbinding scroll events etc), out of scope of project budget.

so question is: there way hack around fullpage.js or maybe plugin? found scrollify, same.

here html code show mean

<body>     <h1>some website</h1>    <h2>i want scroll normal</h2>    <div id="fullpage">     <!-- here should slides scroll desired effect -->       <div class="section"></div>       <div class="section"></div>       <div class="section"></div>     </div>  </body> 

any kind of appreciated. here video showing im looking for: https://youtu.be/otykdzycbm4


Comments