Browse Source

スタイル・ダイアログ追加

main
みてるぞ 1 month ago
parent
commit
0283b11bc0
1 changed files with 22 additions and 0 deletions
  1. +22
    -0
      client/src/app/+videos/+video-watch/video-watch.component.html

+ 22
- 0
client/src/app/+videos/+video-watch/video-watch.component.html View File

@@ -122,4 +122,26 @@
<my-privacy-concerns *ngIf="video" [video]="video"></my-privacy-concerns>
</div>

<div id="overlay" class="comment-overlay"></div>

<div id="dialog" class="comment-dialog">
<h2>オプションを選択</h2>
<form id="dialogForm">
<fieldset>
<legend>位置</legend>
<label><input type="radio" name="position" checked="checked" value="通常">通常</label>
<label><input type="radio" name="position" value="上">上</label>
<label><input type="radio" name="position" value="下">下</label>
</fieldset>
<fieldset>
<legend>サイズ</legend>
<label><input type="radio" name="size" value="大">大</label>
<label><input type="radio" name="size" checked="checked" value="中">中</label>
<label><input type="radio" name="size" value="小">小</label>
</fieldset>
<button type="button" id="okButton">OK</button>
<button type="button" id="cancelButton">キャンセル</button>
</form>
</div>

<my-player-styles></my-player-styles>

Loading…
Cancel
Save