[Loupe.jsライブラリ] 虫眼鏡で画像を拡大して表示する

説明

Loupe.jsライブラリで虫眼鏡で画像を拡大して表示するにはloupePath変数に虫眼鏡の画像があるパスを指定します。IEの場合はIEのコメント機能を使って別途設定します。パスの設定が終わったらimgタグのonloadにinitLoupe(this.id)を指定すれば自動的に虫眼鏡効果が適用されます。

サンプルプログラム

<!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">var loupePath="js/";</script>
<script type="text/javascript" src="js/loupe.js"></script>
<!--[if gte IE 6]>
<script type="text/javascript">var loupePath="js/vml/";</script>
<script type="text/javascript" src="js/vml/loupe.js"></script>
<![endif]-->
</head>
<body>
<h1>虫眼鏡効果</h1>
<div>
<img src="images/sample.jpg" id="myImage" width="480" height="270" onload="initLoupe(this.id)">
</div>
</body>
</html>
サンプルを実行
[戻る]