[YoxViewライブラリ] 画像のまわりの背景色を指定する

説明

YoxViewライブラリでスライド表示した際の画像のまわりの背景色を指定するにはyoxview()のオプションパラメータbackgroundColorにカラー名やカラーコードを指定します。

サンプルプログラム

【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="yoxview/yoxview.css" type="text/css" media="all">
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="yoxview/yoxview-init.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>YoxViewサンプル</h1>
<div class="yoxview">
<a href="photo/1.jpg"><img src="thumb/1.jpg" alt="浅間山"></a>
<a href="photo/2.jpg"><img src="thumb/2.jpg" alt="富士山"></a>
<a href="photo/3.jpg"><img src="thumb/3.jpg" alt="富山湾"></a>
<a href="photo/4.jpg"><img src="thumb/4.jpg" alt="胡蝶花"></a>
</div>
</body>
</html>


【sample.js】
$(function(){
$(".yoxview").yoxview({
backgroundColor : "#0000ff"
});
});
サンプルを実行
[戻る]