Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 안드로이드 배경화면
- 안드로이드 개발 2.0
- 아이폰 바탕화면
- 구글안드로이드
- 하루한마디영어
- 안드로이드
- 스카이 안드로이드폰 시리우스
- Form Stuff
- 안드로이드2.0
- 하루 한마디 영어
- 안드로이드 개발 강좌
- sky 시리우스폰
- objective-c
- MapView
- 안드로이드개발
- 안드로이드폰
- 영어
- 안드로이드 2.0 개발
- 스카이 안드로이드폰 시리우스 K양 동영상
- SKY 시리우스
- 구글 안드로이드
- android
- 아이폰 배경화면
- 안드로이드2.0개발
- 인기있는 블로그 만들기
- 구글 안드로이드 개발
- 안드로이드 개발 2.0 강좌
- 스마트폰 배경화면
- 안드로이드 개발
- 안드로이드 바탕화면
Archives
- Today
- Total
moozi
유튜브동영상 배경 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>유튜브 동영상 배경</title>
<style type="text/css">
* { box-sizing: border-box; }
.video-background {
background: #000;
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
z-index: -99;
}
.video-foreground,
.video-background iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
.video-foreground { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
.video-foreground { width: 300%; left: -100%; }
}
h1{ color:white;}
</style>
</head>
<body>
<div class="video-background">
<div class="video-foreground">
<iframe src="https://www.youtube.com/embed/KBzPIdgrBR8?controls=0&showinfo=0&rel=0&autoplay=1&loop=1&playlist=KBzPIdgrBR8&mute=1" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<h1>U-20 월드컵</h1>
</body>
</html>
'글로벌IT_2024 > K_Digital_2기' 카테고리의 다른 글
html연습문제07 (0) | 2024.05.30 |
---|---|
5/30 html_workspace.zip (0) | 2024.05.30 |
html연습문제06 (0) | 2024.05.29 |
html연습문제05 (0) | 2024.05.28 |
brownshadow.zip (0) | 2024.05.28 |
Comments