7 Star 194 Fork 19

清晨de阳光 / x-scrollbar

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

x-scrollbar 自定义滚动条

概述

这是一个自定义滚动条插件.

在现代前端环境下为什么还需要它, 它有什么特点:

  • 滚动条可以半透明的悬浮于内容上方(类似于移动端).
  • 可以设置仅水平滚动(拨动鼠标滚轮将作用于X轴).

文档与示例

https://xujz520.gitee.io/x-scrollbar/example.html

支持环境

IE9~11 / Edge Chrome Firefox Safari

IE浏览器不支持笔记本触控板的双指滚动, 需要外接鼠标

安装

直接在浏览器中使用

<link rel="stylesheet" href="./xscrollbar.css">
<script src="./xscrollbar.js"></script>

CDN

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/x-scrollbar/xscrollbar.css">
<script src="https://cdn.jsdelivr.net/npm/x-scrollbar/xscrollbar.js"></script>

通过npm安装

npm i x-scrollbar --save

需要自行引入 node_modules/x-scrollbar/xscrollbar.css 样式

import XScrollbar from 'x-scrollbar';

基础示例

<!-- 容器 -->
<div id="container" style="width: 300px; height: 300px; overflow: auto; border: 1px solid #000;">
  <!-- 内容 -->
  <table></table>
</div>

<script>
  let $container = document.getElementById('container');
  let xscrollbar = new XScrollbar($container);
</script>

常用API(与原生无异)

// 读取
$container.scrollLeft
$container.scrollTop

// 设置
$container.scrollLeft = 100
$container.scrollTop = 100

// 监听滚动
$container.addEventListener('scroll', function()  {
    //...
})
MIT License Copyright (c) 2021 清晨de阳光 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

x-scrollbar 增强自定义滚动条js插件 展开 收起
JavaScript 等 3 种语言
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
JavaScript
1
https://gitee.com/xujz520/x-scrollbar.git
git@gitee.com:xujz520/x-scrollbar.git
xujz520
x-scrollbar
x-scrollbar
master

搜索帮助