[bgFlowライブラリ] 背景画像の不透明度を指定する

説明

bgFlowライブラリで背景画像の不透明度を指定するには、bgFlow()のオプションパラメータopacityに0.0〜1.0までの小数値を指定します。値が小さいほど透明になります。

サンプルプログラム

【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/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/jquery.bgFlow.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>bgFlowサンプル</h1>
<div>
<img src="images/1.jpg" width="192" height="108">
<img src="images/2.jpg" width="192" height="108">
<img src="images/3.jpg" width="192" height="108">
<img src="images/4.jpg" width="192" height="108">
</div>
<p>
手軽に背景画像を動かすことができます。
</p>
<div class="bgphoto"></div>
</body>
</html>


【sample.js】
$(function() {
$(".bgphoto").bgFlow({
image : 'images/bg.jpg',
opacity : 0.25
});
});
サンプルを実行
[戻る]