回答編集履歴

2

追記

2021/12/28 09:13

投稿

yambejp
yambejp

スコア116724

test CHANGED
@@ -43,3 +43,55 @@
43
43
  </script>
44
44
 
45
45
  ```
46
+
47
+
48
+
49
+ 表にするとこうです
50
+
51
+
52
+
53
+ |number|Math.abs(number)|Math.abs(number)%((len-1)*2)|idx>=len|(len-1)*2-idx;|
54
+
55
+ |--:|--:|--:|--:|--:|
56
+
57
+ |-10|10|2|||
58
+
59
+ |-9|9|1|||
60
+
61
+ |-8|8|0|||
62
+
63
+ |-7|7|7|true|1|
64
+
65
+ |-6|6|6|true|2|
66
+
67
+ |-5|5|5|true|3|
68
+
69
+ |-4|4|4|||
70
+
71
+ |-3|3|3|||
72
+
73
+ |-2|2|2|||
74
+
75
+ |-1|1|1|||
76
+
77
+ |0|0|0|||
78
+
79
+ |1|1|1|||
80
+
81
+ |2|2|2|||
82
+
83
+ |3|3|3|||
84
+
85
+ |4|4|4|||
86
+
87
+ |5|5|5|true|3|
88
+
89
+ |6|6|6|true|2|
90
+
91
+ |7|7|7|true|1|
92
+
93
+ |8|8|0|||
94
+
95
+ |9|9|1|||
96
+
97
+ |10|1|2|||

1

調整

2021/12/28 09:13

投稿

yambejp
yambejp

スコア116724

test CHANGED
@@ -1,4 +1,4 @@
1
- 命題が合理的ではありません
1
+ **ボールドテキスト**命題が合理的ではありません
2
2
 
3
3
  1→2→3→4→5→4→3・・・となるなら
4
4
 
@@ -7,3 +7,39 @@
7
7
  1←5←4←3ではなく
8
8
 
9
9
  1←2←3←4←5←4←3となるべきです
10
+
11
+
12
+
13
+ # sample
14
+
15
+ こんな感じでどうでしょう?
16
+
17
+ ```javascript
18
+
19
+ <textarea cols=40 rows=10></textarea>
20
+
21
+ <script>
22
+
23
+ const images = ["img01","img02","img03","img04","img05"];
24
+
25
+ const len=images.length;
26
+
27
+ const getIndex=number=>{
28
+
29
+ let idx=Math.abs(number)%((len-1)*2);
30
+
31
+ if(idx>=len) idx=(len-1)*2-idx;
32
+
33
+ return idx;
34
+
35
+ }
36
+
37
+ for(let number=-30;number<30;number++){//numberを適当な範囲で変更
38
+
39
+ document.querySelector('textarea').value+=images[getIndex(number)];
40
+
41
+ }
42
+
43
+ </script>
44
+
45
+ ```