美文网首页
perfect-scrollbar

perfect-scrollbar

作者: 山华水清 | 来源:发表于2017-08-23 20:12 被阅读284次

    github地址 http://noraesae.github.io/perfect-scrollbar/
    下载地址 https://pan.baidu.com/s/1skMrbHF

    function changeSize() {
        var width = parseInt($("#Width").val());
        var height = parseInt($("#Height").val());
    
        $("#Demo").width(width).height(height);
    
        // update scrollbars
        $('#Demo').perfectScrollbar('update');
    
        // or even with vanilla JS!
        Ps.update(document.getElementById('Demo'));
    }
    
    $(function() {
        $('#Demo').perfectScrollbar();
    
        // with vanilla JS!
        Ps.initialize(document.getElementById('Demo'));
    });
    

    相关文章

      网友评论

          本文标题:perfect-scrollbar

          本文链接:https://www.haomeiwen.com/subject/aiejdxtx.html