2 つの div を持つページがあるとします。最初の div にはビデオがあります。ビデオが 30 秒のクリップを再生した後、2 番目の div に「ビデオについて」のテキストを表示します。どうすればこれを達成できますか?
コード:
<div class="clip"> (This is the first div)
<video width="560" height="340" controls>
<source src="media/clip.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
<source src="media/clip.ogv" type='video/ogg; codecs="theora, vorbis"'>
</video>
</div>
<div class="about_video"> (This is the second div)
Clip by Person. The clip is about sample..
</div>