How can I implement a scrollable
on iPad?

前端 未结 4 1678
挽巷
挽巷 2021-02-08 14:42

I have a page which uses a scrollable

:

...Huge Content
4条回答
  •  一个人的身影
    2021-02-08 15:17

    I've had good success with this problem with the help of this little project: http://cubiq.org/iscroll.

    Scroll down to "how to use".

    EDIT, try this for only horizontal scroll (using iScroll):

    HTML:

    Huge Content...

    CSS:

    #wrapper {
        position:relative;
        z-index:1;
        width: 926px
        height: 200px;
        overflow: hidden;
    }
    

    JavaScript:

    function loaded() {
        document.addEventListener('touchmove', function(e){ e.preventDefault(); });
        myScroll = new iScroll('scroller', {vScrollbar:false});
    }
    
    document.addEventListener('DOMContentLoaded', loaded);
    

提交回复
热议问题