문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. <html lang="ko"> <head> <meta charset="얘는하는역할이뭐냐"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>공지 팝업</title> <style> /* 팝업 배경 */ .popup-overlay { display: none; /* 기본값: 숨김 */ position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1000; animation: fadeIn 0.3s ease-out; } /* 팝업 박스 */ .popup-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; max-width: 400px; background: white; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); padding: 20px; text-align: center; animation: slideDown 0.4s ease-out; } /* 닫기 버튼 */ .close-btn { display: inline-block; margin-top: 20px; background: #f44336; color: white; border: none; padding: 10px 20px; cursor: pointer; border-radius: 5px; font-size: 16px; } .close-btn:hover { background: #d32f2f; } /* 애니메이션 효과 */ @keyframes fadeIn { from { background: rgba(0, 0, 0, 0); } to { background: rgba(0, 0, 0, 0.5); } } @keyframes slideDown { from { transform: translate(-50%, -60%); opacity: 0; } to { transform: translate(-50%, -50%); opacity: 1; } } </style> </head> <body> <!-- 팝업 --> <div class="popup-overlay" id="popup"> <div class="popup-content"> <h2>📢 여기에내용을입력해라</h2> <p>여전히이마빡이넓지만그럴듯하잖아?</p> <button class="close-btn" onclick="closePopup()">닫기</button> </div> </div> <script> // 페이지 로드 시 팝업 표시 window.onload = function () { document.getElementById("popup").style.display = "block"; }; // 팝업 닫기 function closePopup() { const popup = document.getElementById("popup"); popup.style.animation = "fadeOut 0.3s ease-out"; setTimeout(() => { popup.style.display = "none"; }, 300); // 애니메이션 종료 후 닫기 } </script> </body> </html> 이 문서에서 사용한 틀: 틀:- (원본 보기) 틀:글씨 크기 (원본 보기) UserWiki:Yuc 문서로 돌아갑니다.