den67rus/yii2-jquery-hover-intent

This is widget wrapper of hoverIntent https://github.com/briancherne/jquery-hoverIntent for Yii2.

1.0.0 2016-08-11 04:42 UTC

This package is not auto-updated.

Last update: 2024-05-11 17:24:49 UTC


README

This is widget wrapper of hoverIntent jQuery Plug-in https://github.com/briancherne/jquery-hoverIntent for Yii2.

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

Either run

$ php composer.phar require den67rus/yii2-jquery-hover-intent "~1.0.0"

or add

"den67rus/yii2-jquery-hover-intent": "~1.0.0"

to the require section of your composer.json file.

##How use

Added following code to your view:

...

use den67rus\jqueryHoverIntent\HoverIntent;

HoverIntent::widget([
    'selector' => '#hoverIntent',
    'options' => [
        'over' => 'makeTall',
        'out' => 'makeShort',
        'timeout' => 100,
    ],
]);

...

##Options of widget

Name Description
$selector jQuery selector
$options hoverIntent options: http://cherne.net/brian/resources/jquery.hoverIntent.html

##License

yii2-jquery-hoverIntent is released under the Apache 2.0 License.