iscroll 5 beta doesn't show scrollbars

2019-08-13 08:33发布

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

标签: iscroll
2条回答
别忘想泡老子
2楼-- · 2019-08-13 09:29

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

查看更多
爷的心禁止访问
3楼-- · 2019-08-13 09:30

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,
}
查看更多
登录 后发表回答