1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jquery.tile.jsのちょっとした応用

Posted at

特定の要素の高さを自動的に揃えてくれるjquery.tile.js。
基本は、
$(window).load(function(){
$('.box').tile();
});

行ごとなら、2列の場合
$(window).load(function(){
$('.box').tile(2);
});

にする。
n番目以降の要素にtileして欲しい場合は、
以下にする。(例は2番目以降の要素にtileする)
$(window).load(function(){
$('.box:gt(0)').tile(2);
});

つーか、これってjquery.tile.js特有のやつではなく、
jqueryの基本みたいなもんだな。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?