HTML과 인터넷

HTML로 동영상 재생 구간 설정하기

2022. 7. 26. 19:07

HTML 코드로 동영상 '구간 재생' 하기


<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<iframe width="560" height="315" src="https://www.youtube.com/embed/uQhTuRlWMxw?end=60" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  <br> 영상설명1
  <br><iframe width="560" height="315" src="https://www.youtube.com/embed/uQhTuRlWMxw?start=60&end-70" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  <br> 영상설명2
  </body>
</html>

src(source) 의 링크 끝에 ?start= & end = 를 지정해주면 구간 재생을 만들어낼 수 있다.

 

 

'HTML과 인터넷' 카테고리의 다른 글

[CSS] Box model  (0) 2022.08.04
[CSS] Display : block, inline, none  (0) 2022.08.04
웹페이지를 아름답게, CSS  (0) 2022.07.26
태그 간의 관계와 목록  (0) 2022.07.24
태그(tag)와 속성(attribute)  (0) 2022.07.24