[jQuery fullscreenrライブラリ] 画像をブラウザ画面いっぱいに表示する(フルスクリーン表示)

説明

jQuery fullscreenrライブラリで画像をブラウザ画面いっぱいに表示する(フルスクリーン表示)にはjQuery.fn.fullscreenr()メソッドに必要なオプションパラメータを指定します。まず、HTML文書内にフルスクリーン表示する画像のimgタグを用意しID名を割り当てます。次にオプションパラメータのbgIDにimgタグに指定したID名を、widthに元画像の横幅、heightに元画像の縦幅を指定します。次にスタイルシートでbodyにoverflow:hidden、padding:0;margin:0;、height:100%;width:100%;を指定します。また、背景画像となるimgタグにはposition:absolute;、z-index: -1;のスタイルシートを設定しておきます。

サンプルプログラム

【HTML】
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/fullscreenr.css" type="text/css" media="all">
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jquery.fullscreenr.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<img src="images/photo.jpg" id="bgimg">
<h1>jQuery fullscreenr</h1>
<p>画像をフルスクリーン(ブラウザ画面いっぱい)に表示します。</p>
</body>
</html>

【sample.js】
$(function(){
jQuery.fn.fullscreenr({
bgID : "#bgimg",
width: 1024,
height: 683
});
});
サンプルを実行
[戻る]