/*JS*/
/*connect luxy.js with CDN*/
<script src="https://min30327.github.io/luxy.js/dist/js/luxy.js"></script>
/*script to make luxy.js work properly*/
const isMobile = /iPhone|iPad|Android/i.test(navigator.userAgent);
if (!isMobile) {
luxy.init({
wrapper: '#luxy',
wrapperSpeed: 0.085,
});
}
/*JS*/
/*HTML*/
<div id="luxy" class="scroll-container">
... //your content goes here
</div>
/*HTML*/
/*CSS*/
.scroll-container {
position: fixed;
}
/*CSS*/