iscroll 5 beta doesn't show scrollbars

放肆的年华 提交于 2019-12-11 11:34:52

问题


i'm implementing iScroll 5 beta on my site but have a problem to show and customize horizontal scrollbar. In the options I have scrollX: true and this enables to scroll horizontally but there is no scrollbar for that. On the demo sites of iScroll 5 beta there are no scrollbars (on desktop).

Did anybody manage to show and customize them?

Thanks, Arek


回答1:


Try to add scrollbars: true as an option when initialising IScroll. it will add it.




回答2:


Please use the below options to make it work for all the browsers and Mobile devices.

{
    scrollbars: true,
    hideScrollbar: true, // Important for Firefox
    fadeScrollbars: true,
    mouseWheel: true,
    click: true,
    disablePointer: true, // Important for Android devices
    disableTouch: false,
    disableMouse: false,
}


来源:https://stackoverflow.com/questions/19398501/iscroll-5-beta-doesnt-show-scrollbars

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