문제

There is what i've done

echo'<embed src="valentine.mp3" autostart="true" loop="true" hidden="true" ></embed>';

but no result. Please help

도움이 되었습니까?

해결책

Use HTMl5

 <audio src="audio.mp3" preload="auto" controls autoplay loop></audio>

The preload attribute is used in the audio element for buffering large files. It can take one of 3 values:

  1. "none" does not buffer the file

  2. "auto" buffers the media file

  3. "metadata" buffers only the metadata for the file

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top