동영상 자동재생
본문
<video width="640" height="360" controls preload="metadata">
<source src="/theme/purewhite/vod/111.mp4" type="video/mp4">
</video>
<style>
video {
width:100%;
max-width:640px;
height:auto;
}
</style>
안녕하세요 고수님
반응형 동영상은 가능한데 자동으로 동영상 재생할 수 있게끔 하고싶은데
어떤 코드가 들어가야하는지 또는 소스가 뭘 빠진걸까요??
찾아봐도 유투브관련된 내용밖에 없어서...
도와주세요 ㅠㅠ
답변 3
pc에서 오토 플레이는 이러 합니다.
<video width="640" height="360" controls autoplay="autoplay" preload="metadata">
<source src="/theme/purewhite/vod/111.mp4" type="video/mp4" >
</video>
<style>
video {
width:100%;
max-width:640px;
height:auto;
}
</style>
<video>에서 controls를 autoplay로 바꾸어 보세요
스마트폰에서 자동 재생이 안되는 것은 알고 계신가요?
답변을 작성하시기 전에 로그인 해주세요.