mhunesi / yii2-perfect-scrollbar
Yii2 Perfect Scrollbar Extension
Installs: 203
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- npm-asset/perfect-scrollbar: ^1.5.0
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2025-03-01 00:31:52 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() ?>