@3dwayfinder/scrollarea 中文文档教程

发布于 3年前 浏览 34 项目主页 更新于 3年前

scrollarea

支持触摸、鼠标和滚轮的 vanilla JS scrollarea

Usage

let area = document.getElementById("scrollarea");
let sa = new ScrollArea(area);

CSS

使容器固定高度,隐藏溢出。 以及根据需要大小的可滚动容器。 要显示滚动条,请添加一些样式

.sa-content-longer .sa-scrollbar {
    width: 1em;
    background-color: lightblue;
}

.sa-content-longer .sa-bar {
    width: 1em;
    background-color: antiquewhite;
}

scrollarea

A vanilla JS scrollarea that supports touch, mouse and scrollwheel

Usage

let area = document.getElementById("scrollarea");
let sa = new ScrollArea(area);

CSS

Make the container fixed height, overflow hidden. And the scrollable container as big as needed. To show a scrollbar add some styles to

.sa-content-longer .sa-scrollbar {
    width: 1em;
    background-color: lightblue;
}

.sa-content-longer .sa-bar {
    width: 1em;
    background-color: antiquewhite;
}
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文