index.html
2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="ja" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>5章.ダイナミックな画像表示</title>
<style type="text/css"><!--
body {
font-family: "MS Pゴシック";
font-family: Helvetica, Arial, sans-serif;
color: #4C4C4C;
}
h2 {
font-size: 18px;
margin-top: 5px;
margin-bottom: 5px;
}
h3 {
font-size: 16px;
margin-top: 5px;
margin-bottom: 5px;
}
h4 {
font-size: 14px; margin-left: 20px;
margin-top: 5px;
margin-bottom: 5px;
}
ul {
font-size: 12px;
margin-top: 5px;
margin-bottom: 5px;
}
a:hover {
color:#FF0000;
text-decoration: underline;
font-size: 12px;
}
a {
text-decoration: none;
font-size: 12px;
}
--></style>
</head>
<body>
<h2>Chapter5 ダイナミックな画像表示 Sample Script</h2>
<hr />
<h3>5.1 画像表示の基本</h3>
<h4>5.1.1 サムネイルをスケールエフェクトで拡大表示する</h4>
<ul>
<li><a href="button_change/button_change.html" target="_blank">button_change.html</a></li>
<li><a href="scaleeffect/scaleeffect.html" target="_blank">scaleeffect.html</a></li>
</ul>
<h4>5.1.2 画像を枠内でドラッグ移動する</h4>
<ul>
<li><a href="drag/drag.html" target="_blank">drag.html</a></li>
</ul>
<hr />
<h3>5.2 Google Maps風パノラマ画像表示</h3>
<h4>5.2.2 JavaScriptコード詳説</h4>
<ul>
<li><a href="panorama/panorama.html" target="_blank">panorama.html</a></li>
</ul>
<hr />
<h3>5.3 マウスホイールによるアクション処理</h3>
<h4>5.3.1 マウスホイールイベント</h4>
<ul>
<li><a href="wheel/wheel_test.html" target="_blank">wheel_test.html</a></li>
</ul>
<h4>5.3.2 画像を拡大・縮小表示する</h4>
<ul>
<li><a href="wheel/wheel_resize.html" target="_blank">wheel_resize.html</a></li>
</ul>
<hr />
<p><a href="../index.html">戻る</a></p>
</body>
</html>