質問編集履歴
3
元に戻しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -74,11 +74,11 @@
|
|
74
74
|
|
75
75
|
|
76
76
|
|
77
|
-
second.style.transform = `rotate(${s}deg)`;
|
77
|
+
second.style.transform = `rotate(${second}deg)`;
|
78
78
|
|
79
|
-
minute.style.transform = `rotate(${m}deg)`;
|
79
|
+
minute.style.transform = `rotate(${minute}deg)`;
|
80
80
|
|
81
|
-
hour.style.transform = `rotate(${h}deg)`;
|
81
|
+
hour.style.transform = `rotate(${hour}deg)`;
|
82
82
|
|
83
83
|
}
|
84
84
|
|
2
誤字修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -74,11 +74,11 @@
|
|
74
74
|
|
75
75
|
|
76
76
|
|
77
|
-
second.style.transform = `rotate(${s
|
77
|
+
second.style.transform = `rotate(${s}deg)`;
|
78
78
|
|
79
|
-
minute.style.transform = `rotate(${m
|
79
|
+
minute.style.transform = `rotate(${m}deg)`;
|
80
80
|
|
81
|
-
hour.style.transform = `rotate(${h
|
81
|
+
hour.style.transform = `rotate(${h}deg)`;
|
82
82
|
|
83
83
|
}
|
84
84
|
|
1
コードブロックを挿入しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -9,6 +9,8 @@
|
|
9
9
|
|
10
10
|
|
11
11
|
①正常に動く
|
12
|
+
|
13
|
+
```javascript
|
12
14
|
|
13
15
|
<script>
|
14
16
|
|
@@ -44,9 +46,11 @@
|
|
44
46
|
|
45
47
|
</script>
|
46
48
|
|
47
|
-
|
49
|
+
```
|
48
50
|
|
49
51
|
②針が動かない
|
52
|
+
|
53
|
+
```
|
50
54
|
|
51
55
|
<script>
|
52
56
|
|
@@ -81,3 +85,5 @@
|
|
81
85
|
setInterval(action, 1000);
|
82
86
|
|
83
87
|
</script>
|
88
|
+
|
89
|
+
```
|