Hide HTML5 music player

In HTML5, the primary audio is frequently used in conjunction with source tag label

<!--music-->

<audio controls="controls">
 	<source src="song.mp3" type="audio/mp3" />
</audio>

Here is the embed tag used, you can hide the music player

<!--music-->

<section class="music">
		<embed src="video/song.mp3" autostart="true" loop="true" hidden="true"></embed>
</section>

Guess you like

Origin blog.csdn.net/JxufeCarol/article/details/91129445