ngx-perfect-scrollbar是一个基于Angular的自定义滚动条组件。它提供了一个可定制的滚动条,可以用于替代浏览器默认的滚动条,使页面滚动更加平滑和美观。 ngx-perfect-scrollbar的主要特点包括: 自定义样式:可以通过CSS来自定义滚动条的外观,包括滚动条的颜色、宽度、圆角等。 平滑滚动:使用ngx-perfect-scrollbar可以实...
尝试对您的组件使用以下方式:import { PerfectScrollbarDirective } from 'ngx-perfect-scrollbar';@ViewChild(PerfectScrollbarDirective, { static: false }) perfectScrollbarDirectiveRef?: PerfectScrollbarDirective;this.perfectScrollbarDirectiveRef.update...
在没有遇到ngx-perfect-scrollbar之前修改浏览器滚动条样式只会这样操作↓ 1/*css主要部分的样式*/2/*定义滚动条宽高及背景,宽高分别对应横竖滚动条的尺寸*/3::-webkit-scrollbar {4width: 7px;5/*对垂直流动条有效*/6height: 7px;7/*对水平流动条有效*/8}910/*定义滚动条的轨道颜色、内阴影及圆角*/...
我发现 ngx-perfect-scrollbar 已被弃用。我发现 npm 包运行状况分析表明该包到目前为止是安全的,但不再受支持。链接: https://snyk.io/advisor/npm-package/ngx-perfect-scrollbar 所以我一直在寻找替代方案来获得得到良好支持的类似软件包,但我没有找到任何可以帮助我的东西。 有哪些替代方案可以替代该软件包?
Angular Perfect Scrollbar This fork of ngx-perfect-scrollbar is an Angular wrapper library for the Perfect Scrollbar. To use this library you should get familiar with the Perfect Scrollbar documentation as well since this documentation only explains details specific to this wrapper....
import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; import { PERFECT_SCROLLBAR_CONFIG } from 'ngx-perfect-scrollbar'; import { PerfectScrollbarConfigInterface } from 'ngx-perfect-scrollbar'; const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { suppressScrollX: ...
ngx-perfect-scrollbar 基于perfect-scrollbar( 用js写的 )写的适用于angular版本,但作者不是同一个人。 github地址:https://github.com/zefoy/ngx-perfect-scrollbar#readme 我需要的效果: 大多数浏览器都兼容,跟浏览器默认样式有很大区别,与ngx-perfect-scrollbar提供的默认样式也不同(保密原因,不贴图了)。
Angular wrapper library for the Perfect Scrollbar. Contribute to zefoy/ngx-perfect-scrollbar development by creating an account on GitHub.
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.1.0.. Latest version: 0.0.2, last published: 4 months ago. Start using ngx-perfect-scrollbar-ivy in your project by running `npm i ngx-perfect-scrollbar-ivy`
在没有遇到ngx-perfect-scrollbar之前修改浏览器滚动条样式只会这样操作↓ 1/*css主要部分的样式*/ 2/*定义滚动条宽⾼及背景,宽⾼分别对应横竖滚动条的尺⼨*/ 3 ::-webkit-scrollbar { 4 width: 7px;5/*对垂直流动条有效*/ 6 height: 7px;7/*对⽔平流动条有效*/ 8 } 9 10/*定...