<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="shortcut icon" type="image/x-icon" href="../images/check.png"/>

<style type="text/css">
pre{
	font-size : 1.5em;
	border : 5px double blue;
	border-left : none;
	border-right : none;
	padding : 10px;
	background-color : #f1faad;
}
video{
	width : 400px;
	height : 300px;
}
img{
	width : 100px;
	height : 100px;
}
#vif{
 display : none; /* 초기값 : none 화면에서 안보이도록 설정 block/ inline */
}

</style>

<script type="text/javascript">
function proc(){
	
	// iframe을 보이도록 설정 - ifram요소를 검색 - id를 이용한 검색
	var aa = document.getElementById("vif");
	
	aa.style.display = "block";
	
}
</script>
</head>
<body>
<pre>
스크립트에서 html요소를 검색하는 방법
태그이름을 이용 - aa = document.getElementsByTagName("iframe")[0]
id이름을 이용 - aa = document.getElementById("vif");
class이름을 이용 aa= document.getElementsByClassName("vcifr")[0]

</pre>

<video  autoplay="autoplay" controls="controls" > 
	<source src="../multi/trailer.ogv">
	<source src="../multi/trailer.mp4">
	<source src="../multi/trailer.webm">
</video>
<h1>유튜브 영상</h1>
<img src="../images/라이언2.jpg" alt ="라이언2.jpg" onclick="proc()"> 
<br><br>

<iframe id="vif" width="560" height="315" 
src="https://www.youtube.com/embed/KJysqZBi14k" 
title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

</body>
</html>

😄 실행

⬇⬇라이언을 클릭하면 밑에처럼 동영상이 나온다.

'웹프로그래밍(HTML, CSS3, JavaScript)' 카테고리의 다른 글

[HTML&Script] buttonproc  (0) 2022.12.23
[HTML&Script] formtest  (0) 2022.12.23
[HTML & Script] audiotest  (0) 2022.12.22
[HTML& Script] div와 span  (0) 2022.12.22
[HTML] iframe  (0) 2022.12.20

+ Recent posts