문제

In my web page on one div in which I show table, I have used JQuery Slimscroll plugin. It works fine for Desktop. But for iPad it dosen't work. I have applied slimscroll using following code.

<script>
     $('#analyticsContainer').slimScroll({
        height: '250px',
        distance: '3px'
        });

</script>

If I want to make this plugin work on ipad also what should I do?

도움이 되었습니까?

해결책

Actually there is no need to implement slimscroll for ipad. As the scrolling in ipad has already a slim bar.

I was able to get this by applying following css to the div.

style="height:250px;overflow:auto; -webkit-overflow-scrolling: touch;"
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top