質問編集履歴

2

コードの編集

2021/10/20 01:39

投稿

nono_
nono_

スコア0

test CHANGED
File without changes
test CHANGED
@@ -4,11 +4,7 @@
4
4
 
5
5
  以上のパッケージを使用したいと思いjsコードを組みました。
6
6
 
7
- 動画の自動/ループ再生あたりの挙動を雑に組んでしまいましたが、
8
-
9
- もう少々きれいなコードに直はできるでしょうか。
7
+ 動かことはできるでしょうか。
10
-
11
-
12
8
 
13
9
 
14
10
 
@@ -22,21 +18,9 @@
22
18
 
23
19
  <script>
24
20
 
25
- // cf.) https://github.com/feross/yt-player#readme
26
-
27
- import YTPlayer from 'yt-player'
28
21
 
29
22
 
30
-
31
- const id = 'di35Gfdt45'
32
-
33
23
  const player = new YTPlayer('#player', {
34
-
35
- width: 1920,
36
-
37
- height: 862,
38
-
39
- controls: false,
40
24
 
41
25
  annotations: false,
42
26
 
@@ -48,14 +32,6 @@
48
32
 
49
33
 
50
34
 
51
- player.mute()
52
-
53
- player.load(id, true)
54
-
55
- player.on('ended', () => player.play())
56
-
57
- </script>
58
-
59
35
  ```
60
36
 
61
37
  //

1

タグの追加

2021/10/20 01:39

投稿

nono_
nono_

スコア0

test CHANGED
@@ -1 +1 @@
1
- jsコードを綺麗にしたい
1
+ jsソースコードを綺麗にしたい
test CHANGED
@@ -15,6 +15,12 @@
15
15
  以下組んだJS記述です。
16
16
 
17
17
 
18
+
19
+
20
+
21
+ ```
22
+
23
+ <script>
18
24
 
19
25
  // cf.) https://github.com/feross/yt-player#readme
20
26
 
@@ -47,3 +53,9 @@
47
53
  player.load(id, true)
48
54
 
49
55
  player.on('ended', () => player.play())
56
+
57
+ </script>
58
+
59
+ ```
60
+
61
+ //