[ShiftZoom.jsライブラリ] 画像をズーム処理できるようにする

説明

ShiftZoom.jsライブラリで画像をズーム処理できるようにするにはshiftzoom.defaultCurpath変数にShiftZoom.jsライブラリで使用する画像があるパスを指定します。あとはimgタグのonloadにshiftzoom.add(this)とすれば自動的にズーム処理が適用されます。

サンプルプログラム

<!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/shiftzoom.js"></script>
<script type="text/javascript"><!--
shiftzoom.defaultCurpath = "js/cursors/";
// --></script>
</head>
<body>
<h1>ズーム処理</h1>
<div>
<img src="images/sample.jpg" id="myImage" width="480" height="270" onload="shiftzoom.add(this)">
</div>
</body>
</html>
サンプルを実行
[戻る]