How to make music play on the site, without ceasing to circle?

  • By music in this case is one file or a pre-formed playlist? - chi100v

2 answers 2

Using the HTML5 <audio /> :

 <audio autoplay="autoplay" loop="loop"> <source src="sound.ogg" type="audio/ogg" /> <source src="sound.mp3" type="audio/mp3" /> </audio> 

    Well here, either on frames, you create pages of the site, where in one you walk on your site, and in another player on flash plays.

    • And how to do it with the frame, provided that I can create a flash - igolka97