HTML 비디오 요소 컨트롤이 표시되지 않습니다.
<p>동영상 요소를 만들고 컨트롤 속성을 true로 설정했지만 컨트롤이 표시되지 않습니다(마우스를 올려도 표시되지 않음)</p>
<pre class="brush:js;toolbar:false;">if (!this._player) {
this._player = document.createElement('video');
}
this._player.controls = true;
this._player.src = xxxxx;
</pre>
<p>동영상 요소의 너비도 100%로 설정하세요.
컨테이너의 위치는 상대적입니다</p>
<p>기본 동영상 컨트롤을 표시하려면 어떻게 해야 하나요</p>