質問編集履歴
3
コードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
```ここに言語を入力
|
8
8
|
|
9
|
-
let c = document.getElementById("
|
9
|
+
let c = document.getElementById("canvas");
|
10
10
|
|
11
11
|
let ctx = c.getContext("2d");
|
12
12
|
|
2
コードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,9 +16,9 @@
|
|
16
16
|
|
17
17
|
//結合に使用するcanvasの大きさを設定
|
18
18
|
|
19
|
-
$("#canvas").attr({ height: ($("#
|
19
|
+
$("#canvas").attr({ height: ($("#img").height() * items.length) });//高さは保存した全ページを縦に表示できる高さにする
|
20
20
|
|
21
|
-
$("#canvas").attr({ width: $("#
|
21
|
+
$("#canvas").attr({ width: $("#img").width() });
|
22
22
|
|
23
23
|
|
24
24
|
|
1
タグの追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|