연습장:Yuc: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
1번째 줄: 1번째 줄:
*예시
^여기에문서가적혀있다고가정해보고^
 
<html lang="ko">
<html lang="ko">
<head>
<head>
     <meta charset="UTF-8">
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <title>왜1번뜨고다시안뜨는거노</title>
     <title>공지 팝업</title>
     <style>
     <style>
         /* 팝업 배경 */
         /* 팝업 배경 */
16번째 줄: 17번째 줄:
             background: rgba(0, 0, 0, 0.5);
             background: rgba(0, 0, 0, 0.5);
             z-index: 1000;
             z-index: 1000;
            animation: fadeIn 0.3s ease-out;
         }
         }


22번째 줄: 22번째 줄:
         .popup-content {
         .popup-content {
             position: absolute;
             position: absolute;
             top: 50%;
             top: -100%;
             left: 50%;
             left: 50%;
             transform: translate(-50%, -50%);
             transform: translateX(-50%);
             width: 90%;
             width: 90%;
             max-width: 400px;
             max-width: 400px;
32번째 줄: 32번째 줄:
             padding: 20px;
             padding: 20px;
             text-align: center;
             text-align: center;
             animation: slideDown 0.4s ease-out;
             animation: slideDown 0.4s ease-out forwards;
         }
         }


         /* 닫기 버튼 */
         /* 닫기 버튼 */
         .close-btn {
         .close-btn {
            display: inline-block;
             margin-top: 20px;
             margin-top: 20px;
             background: #007BFF;
             background: #007BFF;
52번째 줄: 51번째 줄:


         /* 애니메이션 효과 */
         /* 애니메이션 효과 */
         @keyframes fadeIn {
         @keyframes slideDown {
             from {
             from {
                 background: rgba(0, 0, 0, 0);
                 top: -100%;
             }
             }
             to {
             to {
                 background: rgba(0, 0, 0, 0.5);
                 top: 20%;
             }
             }
         }
         }


         @keyframes slideDown {
         @keyframes slideUp {
             from {
             from {
                 transform: translate(-50%, -60%);
                 top: 20%;
                opacity: 0;
             }
             }
             to {
             to {
                 transform: translate(-50%, -50%);
                 top: -100%;
                opacity: 1;
             }
             }
         }
         }
76번째 줄: 73번째 줄:
     <!-- 팝업 -->
     <!-- 팝업 -->
     <div class="popup-overlay" id="popup">
     <div class="popup-overlay" id="popup">
         <div class="popup-content">
         <div class="popup-content" id="popup-content">
             <h2>📢 여기에제목을입력해라</h2>
             <h2>📢 제목</h2>
             <p>여기에내용을</p>
             <p>여기에내용을적어라</p>
             <button class="close-btn" onclick="closePopup()">닫기</button>
             <button class="close-btn" onclick="closePopup()">닫기</button>
         </div>
         </div>
85번째 줄: 82번째 줄:
     <script>
     <script>
         // 페이지 로드 시 팝업 표시
         // 페이지 로드 시 팝업 표시
         window.onload = function () {
         document.addEventListener("DOMContentLoaded", function () {
             document.getElementById("popup").style.display = "block";
             const popup = document.getElementById("popup");
         };
            popup.style.display = "block"; // 팝업 표시
         });


         // 팝업 닫기 <-- 얘 왜 색갈 원상복귀됨?
         // 팝업 닫기
         function closePopup() {
         function closePopup() {
             const popup = document.getElementById("popup");
             const popupContent = document.getElementById("popup-content");
             popup.style.animation = "fadeOut 0.3s ease-out";
             popupContent.style.animation = "slideUp 0.4s ease-out forwards"; // 닫기 애니메이션
             setTimeout(() => {
             popupContent.addEventListener("animationend", function () {
                 popup.style.display = "none";
                const popup = document.getElementById("popup");
             }, 300); // 애니메이션 종료 후 닫기
                 popup.style.display = "none"; // 팝업 숨김
             }, { once: true });
         }
         }
     </script>
     </script>
</body>
</body>
</html>
</html>

2024년 12월 9일 (월) 23:47 판

^여기에문서가적혀있다고가정해보고^

공지 팝업