UserWiki:Yuc: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
3번째 줄: 3번째 줄:
     <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>
         /* 팝업 배경 */
         /* 팝업 배경 */
13번째 줄: 13번째 줄:
             width: 100%;
             width: 100%;
             height: 100%;
             height: 100%;
             background: rgba(0, 0, 0, 0.5);
             background: rgba(0, 0, 0, 0.7);
             z-index: 1000;
             z-index: 1000;
            animation: fadeIn 0.3s ease-out;
         }
         }


21번째 줄: 20번째 줄:
         .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: 450px;
             background: white;
             background: #ffffff;
             border-radius: 10px;
             border-radius: 20px;
             box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
             box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
             padding: 20px;
             padding: 30px;
             text-align: center;
             text-align: center;
             animation: slideDown 0.4s ease-out;
             animation: slideDown 0.5s ease-out forwards;
        }
 
        /* 헤더 스타일 */
        .popup-content h2 {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }
 
        /* 본문 스타일 */
        .popup-content p {
            font-size: 16px;
            color: #555;
            line-height: 1.5;
            margin-bottom: 20px;
        }
 
        .popup-content small {
            font-size: 14px;
            color: #888;
        }
 
        /* 버튼 스타일 */
        .link-btn {
            display: block;
            margin: 10px auto;
            background: linear-gradient(45deg, #007BFF, #6495ED);
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-align: center;
            width: 80%;
        }
 
        .link-btn:hover {
            background: linear-gradient(45deg, #0056b3, #4169E1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
         }
         }


38번째 줄: 79번째 줄:
             display: inline-block;
             display: inline-block;
             margin-top: 20px;
             margin-top: 20px;
             background: #007BFF;
             background: #FF4C4C;
             color: white;
             color: white;
             border: none;
             border: none;
             padding: 10px 20px;
             padding: 12px 25px;
             cursor: pointer;
             cursor: pointer;
             border-radius: 5px;
             border-radius: 25px;
             font-size: 16px;
             font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
         }
         }
         .close-btn:hover {
         .close-btn:hover {
             background: #007BFF;
             background: #FF0000;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
         }
         }


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


         @keyframes slideDown {
         @keyframes slideUp {
             from {
             from {
                 transform: translate(-50%, -60%);
                 top: 25%;
                opacity: 0;
             }
             }
             to {
             to {
                 transform: translate(-50%, -50%);
                 top: -100%;
                opacity: 1;
             }
             }
         }
         }
73번째 줄: 116번째 줄:
</head>
</head>
<body>
<body>
     <!-- 팝업 -->
     <!-- 링크 팝업 -->
     <div class="popup-overlay" id="popup">
     <div class="popup-overlay" id="link-popup">
         <div class="popup-content">
         <div class="popup-content" id="link-popup-content">
             <h2>📢 여기에내용을입력해라</h2>
             <h2>📢 어디로 가시렵니까?</h2>
             <p>여전히이마빡이넓지만그럴듯하잖아?</p>
             <p><small>Caelia Studio</small></p>
             <button class="close-btn" onclick="closePopup()">닫기</button>
            <a href="https://example.com/1" target="_blank" class="link-btn">링크 1</a>
            <a href="https://example.com/2" target="_blank" class="link-btn">링크 2</a>
            <a href="https://example.com/3" target="_blank" class="link-btn">링크 3</a>
             <button class="close-btn" onclick="closeLinkPopup()">닫기</button>
         </div>
         </div>
     </div>
     </div>


     <script>
     <script>
         // 페이지 로드 시 팝업 표시
         // 페이지 로드 시 링크 팝업 표시
         window.onload = function () {
         document.addEventListener("DOMContentLoaded", function () {
             document.getElementById("popup").style.display = "block";
             const linkPopup = document.getElementById("link-popup");
         };
            linkPopup.style.display = "block"; // 팝업 표시
         });


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

2024년 12월 10일 (화) 09:02 판

공지 팝업