Disable horizontal scroll on parallax

早过忘川 提交于 2019-12-08 03:47:40

问题


I made a site parallax scrolling, using slider and stellarjs. This works well for scrolling up and down, but it also scrolls horizontally and I do not want.

So i want to disable horizontally scrolling and keep my width at 100% of user screen or at a specific width.

here's the website : ecolopeintre.com/index_para.php


回答1:


Stellar offers options, please review docs http://markdalgleish.com/projects/stellar.js/docs/

In order to turn off horizontal scrolling please review the code below hopefully it can help.

$.stellar({
  horizontalScrolling: false,
});


来源:https://stackoverflow.com/questions/23091264/disable-horizontal-scroll-on-parallax

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