voskobovich/yii2-match-height-asset
Composer 安装命令:
composer require voskobovich/yii2-match-height-asset
包简介
A responsive equal heights jQuery plugin for Yii2
README 文档
README
A responsive equal heights jQuery plugin for Yii2.
Support
Plugin
Demo.
Usage
Register the asset in the code view
<?php
...
voskobovich\matchheight\MatchHeightAsset::register($this);
?>
or in your AssetBundle
class AppAsset extends AssetBundle
{
...
public $depends = [
...
'voskobovich\matchheight\MatchHeightAsset'
];
}
and then execute JS code in view
<?php
<div class="block-name">
content
</div>
$this->registerJs('$(".block-name").matchHeight();')
?>
or
<div data-mh="group-name-1">
content
</div>
<div data-mh="group-name-2">
content
</div>
<?php $this->registerJs('$("body").matchHeight();') ?>
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist voskobovich/yii2-match-height-asset "~1.0"
or add
"voskobovich/yii2-match-height-asset": "~1.0"
to the require section of your composer.json file.
统计信息
- 总下载量: 463
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-01-31