如何将400转换为百分比? “scrollY”:400,

时间:2014-06-04 16:18:50

标签: javascript percentage

我正在使用div卷轴并找到了这个javascript。我想转换它,所以我可以使用百分比。

$(document).ready(function() {
    $('#example').dataTable( {
        "scrollY":        400, /*This changes the height of the DIV Scroller*/
        "scrollCollapse": true,
        "jQueryUI":       true
    } );
} );

    </script>

&#34; Scrolly&#34;:400,想把它变成%

1 个答案:

答案 0 :(得分:0)

尝试计算百分比

var sc = $(window).scrollTop(),
        dh = $(document).height(),
        ch = $(window).height();
        scrollPercent = (sc / (dh-ch)) * 100;