Skrollr.js Plugin Not Parallaxing Inside Bootstrap Carousel - Fiddle Provided

谁说我不能喝 提交于 2020-01-06 16:21:27

问题


I am having a problem with the SKrollr.js plugin for Parallax and smooth scrolling. Everything works fine except Bootstrap carousel's, and im sure any carousel for that matter. It's clearly a display:none problem when the plugin is setting itself up on load and can't see any of the .item classes. But I can't figure out how on earth to get Skrollr to see all of the slides/.item classes when it's rendering.

I even tried this kinda stuff. My Skrollr markup isn't the problem that code always works for me.

Skrollr Markup

data-10p-top-bottom="background-position-y: 100%;" data-bottom-top="background-position-y: 0%;"

CSS

.displaying {
    display: block !important;
}

JS

var sk = skrollr.init({
    forceHeight: false,
    beforerender: function(data) {
        $(".item").addClass('displaying');
    },
    render: function(data) {
        $(".item").removeClass('displaying');
    }
});

EDIT

I made a JSFiddle for it here or you can see it fullscreen for debugging here

Sorry I was being vague and general because I know my HTML is solid. Check the fiddle. The slider functions just fine it's Skrollr not being able to see the hidden slides at runtime that is the problem. I just need a better solution to solve this.


回答1:


I'm guessing that you need to do a refresh since I notice it works if I resize the browser.

Try this code:

setTimeout(function () {
skrollr.get().refresh();
}, 0);

You can change the timeout to 1000 if necessary to ensure everything loads.



来源:https://stackoverflow.com/questions/31869564/skrollr-js-plugin-not-parallaxing-inside-bootstrap-carousel-fiddle-provided

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!