Panel Count
Panel Count

Panel animation number

Installation
The preferred way to install this extension is through composer.

Either add

    "require": {
    "keygenqt/yii2-panel-count": "*"
}
of your composer.json file.
Example
 
My books
0
 
My bookmark
0
 
My font
0
 
My title
0
Example form code
    <?= keygenqt\panelCount\PanelCount::widget([
    'icon'      => 'fas fa-book',
    'count'     => 155.50,
    'title'     => 'My books',
    'format'    => true,
]) ?>

<?= keygenqt\panelCount\PanelCount::widget([
    'icon' => 'fas fa-bookmark',
    'count' => 124.50 . " $",
    'title' => 'My bookmark',
    'duration' => 1000,
    'up' => true,
    'color' => 'cadetblue',
    'format' => true,
]) ?>

<?= keygenqt\panelCount\PanelCount::widget([
    'icon'      => 'fas fa-font',
    'count'     => 19999,
    'title'     => 'My font',
    'up'        => false,
    'color'     => 'darkmagenta'
]) ?>

<?= keygenqt\panelCount\PanelCount::widget([
    'count'     => 19999,
    'title'     => 'My title',
    'color'     => 'tomato'
]) ?>
May 29, 2020