1
0

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.

colorboxで画面サイズに合わせて高さを指定

Posted at

jquery.colorbox.jsでモーダルウィンドウの高さを100%に指定するオプションの書き方が
ググっても見つからなかったのでメモ。

コード

jQuery
$(".iframe").colorbox({
    open:true,
    iframe:true,
    innerWidth: 1000,//ColorBoxの幅
    innerHeight: 3300,//ColorBoxの高さ
    maxWidth:"100%",
    maxHeight:"100%"
  });

innerとmaxの両方を指定しないと自分の場合ダメでした。
これでモーダルウィンドウの高さが100%になって、右端にスクロールバーがでました。

1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?