[HTML] audio, autoplay

고동이의 IT·2021년 11월 4일
0

HTML5&JavaScript

목록 보기
5/15
post-thumbnail

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel ="stylesheet" href="../css/mystyle.css">
</head>
<body>
<pre>
autoplay가 안되는 이유
구글에서 2018년도에  autoplay 정책을 재정의 했다.
무작위 광고와 자동재생 때문에 사용자의 환경이 안좋아지기 때문


</pre>
	<audio controls autoplay>
		<source src="/webpro/multi/old_pop.ogg" type="audio/ogg">
		<source src="/webpro/multi/old_pop.mp3" type="audio/mp3">
		<source src="/webpro/multi/old_pop.wav" type="audio/wav">
	</audio>
	
</body>
</html>
profile
삐약..뺙뺙

0개의 댓글