Can I show the scroll bar on an iPad even if I don't scroll?

I use "-webkit-overflow-scrolling": "touch" to show the scroll bar on the scrollable element on the iPad. The scroll button appears only when I touch the screen, but I would like to be constantly visible so that the user can see that there is more content.

Any suggestions?

+6
source share
1 answer

There is no function that allows you to constantly see the scroll bar. But if you want to implement something like this, you must configure it using the delegate function for UIScrollView. Doc: http://developer.apple.com/library/ios/#documentation/uikit/reference/UIScrollView_Class/Reference/UIScrollView.html

0
source

Source: https://habr.com/ru/post/905622/


All Articles