質問編集履歴
1
説明を追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -45,3 +45,47 @@
|
|
45
45
|
|
46
46
|
|
47
47
|
ご教示いただけますと幸いです。よろしくお願いいたします。
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
## 追記
|
52
|
+
|
53
|
+
HTMLは以下のような形です。
|
54
|
+
|
55
|
+
```html
|
56
|
+
|
57
|
+
<html>
|
58
|
+
|
59
|
+
<head>
|
60
|
+
|
61
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
62
|
+
|
63
|
+
</head>
|
64
|
+
|
65
|
+
<body>
|
66
|
+
|
67
|
+
<div id="content">
|
68
|
+
|
69
|
+
<p>
|
70
|
+
|
71
|
+
<script type="text/javascript">
|
72
|
+
|
73
|
+
// hogehoge.jsに渡す変数を定義
|
74
|
+
|
75
|
+
</script>
|
76
|
+
|
77
|
+
<script type="text/javascript" src="hogehoge.js"></script>
|
78
|
+
|
79
|
+
</p>
|
80
|
+
|
81
|
+
</div>
|
82
|
+
|
83
|
+
<img id="hoge">
|
84
|
+
|
85
|
+
<canvas style="width:640; height480; transform-origin: 0px 0px; transform: scale(1.5957); position: static; left: 5px; top: 0px;"></canvas>
|
86
|
+
|
87
|
+
</body>
|
88
|
+
|
89
|
+
</html>
|
90
|
+
|
91
|
+
```
|