2

嗨,过去一个小时我一直在尝试更改默认滚动条在浏览器上的显示方式。我说的是右侧的主滚动条没有添加新滚动条并对其进行样式化。我正在使用 jScrollPane 插件,但它似乎没有工作,或者我做的不对。这是我的代码:

$("window").jScrollPane();

window
{
    width: 100%;

    overflow: auto;
}
window
{
    height: auto;

}
4

1 回答 1

0

如果您访问 AK 已链接的网站,您将看到所需的Jquery 和 CSS 以使其正常工作。我让你更容易理解它们。

$(function()
{
    var win = $(window);
    // Full body scroll
    var isResizing = false;
    win.bind(
        'resize',
        function()
        {
            if (!isResizing) {
                isResizing = true;
                var container = $('#full-page-container'); //this should be the most parent
                // div, right beneath the <body> and covering the entire page. Change the ID HERE.
                // Temporarily make the container tiny so it doesn't influence the
                // calculation of the size of the document
                container.css(
                    {
                        'width': 1,
                        'height': 1
                    }
                );
                // Now make it the size of the window...
                container.css(
                    {
                        'width': win.width(),
                        'height': win.height()
                    }
                );
                isResizing = false;
                container.jScrollPane( //this is where outer scroll changes
                    {
                        'showArrows': true
                    }
                );
            }
        }
    ).trigger('resize');

// Workaround for known Opera issue which breaks demo (see
// http://jscrollpane.kelvinluck.com/known_issues.html#opera-scrollbar )
$('body').css('overflow', 'hidden');

// IE calculates the width incorrectly first time round (it
// doesn't count the space used by the native scrollbar) so
// we re-trigger if necessary.
if ($('#full-page-container').width() != win.width()) {
    win.trigger('resize');
}

/*Internal scrollpanes. (Not needed if you want to change only the outer)
$('.scroll-pane').jScrollPane({showArrows: true});
*/
});

现在CSS:

html
{
    overflow: auto;
}
#full-page-container
{
    overflow: auto;
}
/*** Optional INNER scrolls. 
.scroll-pane
{
    width: 100%;
    height: 200px;
    overflow: auto;
}
.horizontal-only
{
    height: auto;
    max-height: 200px;
}
***/

不要忘记包含 Jquery、jscrollpane.css、mousewheel.js、jscrollpane.js

于 2013-04-22T15:32:32.293 回答