-
Notifications
You must be signed in to change notification settings - Fork 0
jquery.matchHeight.js
Manabu Yasuda edited this page Mar 4, 2016
·
2 revisions
<script src="jquery.matchHeight.js" type="text/javascript"></script>class属性itemを対象とする場合。
$(function() {
$('.item').matchHeight(options);
});オプションは指定しなくてもいい場合が多い。
$(function() {
$('.item').matchHeight({
byRow: true, // 行を検出するか(true or false)
property: 'height', // style属性として使用するプロパティ('height' or 'min-height')
target: null, // (e.g. `$('.sidebar')`)
remove: false //
});
});