兼容ie8的jquery滚动条美化插件
源码介绍
OverlayScrollbars是一款兼容ie8的jquery滚动条美化插件。该jquery滚动条美化插件提供了一种简单的方式来对页面或某个元素的滚动条进行美化,提供了12种主题效果。它的特点还有: 在页面中引入OverlayScrollbars.js和OverlayScrollbars.css文件。 如果使用jquery版本,则要移入jquery版本的js文件。 另外,如果需要使用默认主题值为的其它滚动条主题,需要移入相应的CSS文件。 如果需要美化这个页面的滚动条,则可以在 OverlayScrollbars滚动条美化插件的可用配置参数如下: OverlayScrollbars滚动条美化插件的可用回调函数有: OverlayScrollbars滚动条美化插件的可用方法有: OverlayScrollbars滚动条美化插件的github地址为:https://github.com/KingSora/OverlayScrollbars简要教程
使用方法
<link href="css/OverlayScrollbars.css" rel="stylesheet" type="text/css">
<script src="js/OverlayScrollbars.js"></script>
<link href="css/OverlayScrollbars.css" rel="stylesheet" type="text/css">
<script src="js/jquery.overlayScrollbars.min.js"></script>
<!-- round dark -->
<link href="css/os-theme-round-dark.css" rel="stylesheet">
<!-- round light -->
<link href="css/os-theme-round-light.css" rel="stylesheet">
<!-- block dark -->
<link href="css/os-theme-block-dark.css" rel="stylesheet">
<!-- block light -->
<link href="css/os-theme-block-light.css" rel="stylesheet">
<!-- minimal dark -->
<link href="css/os-theme-minimal-dark.css" rel="stylesheet">
<!-- minimal light -->
<link href="css/os-theme-minimal-light.css" rel="stylesheet">
<!-- thick dark -->
<link href="css/os-theme-thick-dark.css" rel="stylesheet">
<!-- thick light -->
<link href="css/os-theme-thick-light.css" rel="stylesheet">
<!-- thin dark -->
<link href="css/os-theme-thin-dark.css" rel="stylesheet">
<!-- thin light -->
<link href="css/os-theme-thin-light.css" rel="stylesheet">
初始化插件
<body>
元素上调用该插件。
$('body').overlayScrollbars({
className: "os-theme-dark"
});
// js调用方法
//OverlayScrollbars(document.querySelectorAll('body'), { });
配置参数
$('body').overlayScrollbars({
// none || both || horizontal || vertical || n || b || h || v
resize : 'none',
// true || false
sizeAutoCapable : true,
// true || false
clipAlways : true,
// true || false
normalizeRTL : true,
// true || false
paddingAbsolute : false,
// true || false || null
autoUpdate : null,
// number
autoUpdateInterval : 33,
// These options are only respected if the native scrollbars are overlaid.
nativeScrollbarsOverlaid : {
showNativeScrollbars : false, //true || false
initialize : true //true || false
},
// Defines how the overflow should be handled for each axis
overflowBehavior : {
// visible-hidden || visible-scroll || hidden || scroll || v-h || v-s || h || s
x : 'scroll',
// visible-hidden || visible-scroll || hidden || scroll || v-h || v-s || h || s
y : 'scroll'
},
// Defines the behavior of the custom scrollbars.
scrollbars : {
visibility : 'auto', //visible || hidden || auto || v || h || a
autoHide : 'never', //never || scroll || leave || n || s || l
autoHideDelay : 800, //number
dragScrolling : true, //true || false
clickScrolling : false, //true || false
touchSupport : true //true || false
},
// Defines special behavior of textarea elements.
textarea : {
dynWidth : false, //true || false
dynHeight : false //true || false
}
});
回调函数
$('body').overlayScrollbars({
callbacks : {
onInitialized : null, //null || function
onInitializationWithdrawn : null, //null || function
onDestroyed : null, //null || function
onScrollStart : null, //null || function
onScroll : null, //null || function
onScrollStop: null, //null || function
onOverflowChanged : null, //null || function
onOverflowAmountChanged : null, //null || function
onDirectionChanged : null, //null || function
onContentSizeChanged : null, //null || function
onHostSizeChanged : null, //null || function
onUpdated : null //null || function
}
});
方法
var instance = $('body').overlayScrollbars({
// options here
});
// adds new options
instance.options(optionName, optionValue)
// updates scrollbars
instance.update([force])
// puts the instance to sleep
instance.sleep()
// returns the current scroll information.
instance.scroll()
// sets the scroll position.
instance.scroll(coordinates [, duration] [, easing] [, complete])
// stops the current scroll-animation.
instance.scrollStop()
// returns all relevant elements.
instance.getElements()
// returns a object which describes the current state of this instance.
instance.getState()
// removes scrollbars from DOM
instance.destroy()
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 兼容ie8的jquery滚动条美化插件
发表评论 取消回复