Domanda

This is a normal music player's HTML code:

<html>
<body>

<audio controls>
  <source src="zui you ji.mp3" type="audio/mpeg">
</audio>

</body>
</html>

How can I make it play songs automatically?

È stato utile?

Soluzione

try this html5 code.....

 <html>
<body>

<audio controls autoplay>
  <source src="zui you ji.mp3" type="audio/mpeg">
</audio>

</body>
</html>

Altri suggerimenti

You can add the autoplay attribute to your HTML 5 audio tag.

<html>
    <body>

    <audio autoplay="autoplay" controls>
      <source src="zui you ji.mp3" type="audio/mpeg">
    </audio>

    </body>
 </html>

You don't need to put autoplay="autoplay" just autoplay as it is

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top