mhunesi/yii2-perfect-scrollbar

Yii2 Perfect Scrollbar Extension


Keywords
extension, yii2, scrollbar, perfect-scrollbar
License
MIT

Documentation

Yii2 Perfect Scrollbar

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 :

<?= \mhunesi\scrollbar\PerfectScrollbar::begin([
        'width' => 200,
        'height' => 200,
        'options' => [
            'class' => 'p-2 mb-5',
        ],
        'clientOptions' => [
            'wheelPropagation' => true
        ]
]) ?>

    <p> HTML Content </p>

<?= \mhunesi\scrollbar\PerfectScrollbar::end() ?>