mhunesi / yii2-perfect-scrollbar
Yii2 Perfect Scrollbar Extension
Package info
github.com/mhunesi/yii2-perfect-scrollbar
Type:yii2-extension
pkg:composer/mhunesi/yii2-perfect-scrollbar
1.0.0
2020-07-02 18:41 UTC
Requires
- npm-asset/perfect-scrollbar: ^1.5.0
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2026-03-01 00:32:06 UTC
README
Yii2 Perfect Scrollbar Extension
Installation
The preferred way to install this extension is through composer.
Either run
composer require mhunesi/yii2-perfect-scrollbar "*"
or add
"mhunesi/yii2-perfect-scrollbar": "*"
to the require section of your composer.json file.
Usage
Once the extension is installed, simply use it in your code by :
<?php \mhunesi\scrollbar\PerfectScrollbar::begin([ 'width' => '200px', 'height' => '200px', 'options' => [ 'class' => 'p-2 mb-5', ], 'clientOptions' => [ 'wheelPropagation' => true ] ]) ?> <p> HTML Content </p> <?php \mhunesi\scrollbar\PerfectScrollbar::end() ?>