|
|
1번째 줄: |
1번째 줄: |
| <html><center><div class="yeah"><iframe id="transparent" width="970" height="546" src="https://www.youtube.com/embed/9qRCARM_LfE?autoplay=1&mute=0&loop=1" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" style="border-radius: 60px;" allowfullscreen></iframe></center></div><div class="ah"><span style="font-size: .95rem; font-weight: 900; color: white;">사랑을 전하고 싶다든가</span></div></center></html>{{DarkMode}}
| |
| <html> | | <html> |
| | <div class="video-container"> |
| | <iframe src="https://www.youtube.com/embed/9qRCARM_LfE?autoplay=1&mute=0&playsinline=1&playlist=9qRCARM_LfE&loop=1"></iframe> |
| | </div> |
| | <div id="text"><span id="yeah">사랑을<br>전하고<br>싶다든가</span></div> |
| <style> | | <style> |
| /* 본문 */
| | .video-container{ |
| .yeah { width: 970px; height: 546px; overflow: hidden; border-radius: 60px; border: solid 2px #E52A35; background: #E52A35; } | | width: 100vw; |
| .ah { margin-top: 1.0rem; padding: .2rem 0; width: 970px; border-radius: 60px; border: solid 2px #E52A35; background: #E52A35; text-align: center; }
| | height: 100vh; |
| #transparent { opacity: 1; filter: blur(1.5px); -webkit-filter: blur(1.5px); }
| | } |
| @media screen and (max-width: 1023px) { .transparent { display: none; } }
| | |
| .footer-info-copyright { display: none; }
| | iframe { |
| | position: absolute; |
| | top: 50%; |
| | left: 50%; |
| | width: 100vw; |
| | height: 100vh; |
| | transform: translate(-50%, -50%); |
| | } |
|
| |
|
| /* 글꼴 */ | | @media (min-aspect-ratio: 16/9) { |
| @font-face {
| | .video-container iframe { |
| font-family: 'Chosunilbo_myungjo'; | | /* height = 100 * (9 / 16) = 56.25 */ |
| src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/Chosunilbo_myungjo.woff') format('woff'); | | height: 56.25vw; |
| font-weight: normal; | | } |
| font-style: normal;
| | } |
| | |
| | @media (max-aspect-ratio: 16/9) { |
| | .video-container iframe { |
| | /* width = 100 / (9 / 16) = 177.777777 */ |
| | width: 177.78vh; |
| | } |
| } | | } |
|
| |
|
| /* 부가기능 */
| | #text{ |
| body {
| | position: absolute; |
| -webkit-user-select: none;
| | color: #FFFFFF; |
| -moz-user-select: none;
| | left: 50%; |
| -ms-user-select: none;
| | top: 50%; |
| user-select: none;
| | transform: translate(-50%, -50%); |
| | } |
| | #yeah{ |
| | font-size: 5.5rem; |
| | font-weight: 900; |
| | line-height: 95%; |
| } | | } |
| </style>
| | </html>{{DARKMODE}} |
| </html> | |