카테고리 없음

일자 노출건

Stater 2025. 4. 2. 08:25


<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>특정 날짜 이후 노출</title>
    <style>
        #targetArea {
            display: none; /* 기본적으로 숨김 */
        }
    </style>
</head>
<body>

    <div id="targetArea">
        <h2>이제 노출되는 영역입니다!</h2>
        <p>4월 8일 이후에만 보입니다.</p>
    </div>

    <script>
        document.addEventListener("DOMContentLoaded", function() {
            const targetDate = new Date("2025-04-08T00:00:00"); // 기준 날짜
            const now = new Date(); // 현재 날짜

            if (now >= targetDate) {
                document.getElementById("targetArea").style.display = "block";
            }
        });
    </script>

</body>
</html>

반응형