How do I get scrollbars to show in Mobile Safari?

前端 未结 7 1397
长情又很酷
长情又很酷 2020-12-05 10:46

The jQuery time-picker plugin that I wrote uses a div as the containing block for the list of times, and on Mobile Safari there are no scrollbars to indicate that there are

7条回答
  •  庸人自扰
    2020-12-05 11:26

    To answer Sam Hasler comment above. Nicescroll 3 is a jquery plugin that does just what you want with fade in/out effect and work in all major Mobile/Tablet/Desktop browsers.

    Live demo

    Code:

    $(document).ready(function() {    
        $("html").niceScroll({styler:"fb",cursorcolor:"#000"});
        $("#divexample1").niceScroll();//or styles/options below
        $("#divexample2").niceScroll("#wrapperexample2",{cursorcolor:"#0F0",boxzoom:true});
        $("#divexample3").niceScroll("#divexample3 iframe",{boxzoom:true});
      });
    

提交回复
热议问题