<head>
  <style>
    .page_cover, .width.padding:first-of-type {
      display: none !important;
    }
  </style>
</head>
hideNotionTitle: true
showShareButton: false
topNavigator: null

title: "λ©˜νƒˆλ ˆν„°"
description: "λ¬΄λ„ˆμ§€μ§€ μ•ŠκΈ° μœ„ν•΄μ„œ ν”λ“€λ¦¬λŠ” 법을 λ°°μš°λ‹€"
ogImage: "<https://i.postimg.cc/85WfSG9x/image.png>"

theme: "custom"
backgroundColor: "#ffffff"
fontColor: "#000000"

imageBorderRadius: 0
calloutBorderRadius: 0
galleryBorderRadius: 0

Untitled

<script src="<https://cdn.commoninja.com/sdk/latest/commonninja.js>" defer></script>
<div class="commonninja_component pid-c9d0fe7c-a848-4185-921b-af31ee6ff10f"></div>

πŸŸ₯ 동기뢀여 μ½˜ν…μΈ  ❌ λ™κΈ°λΆ€μ—¬λŠ” λ‹€λ₯Έ 곳을 μ•Œμ•„λ³΄μ„Έμš”

🟩 맀주 3편, μ›”μˆ˜κΈˆ μ˜€μ „ 8μ‹œ 15뢄에 λ°œν–‰λ©λ‹ˆλ‹€

🟦 였늘의 λ©˜νƒˆλ ˆν„°λŠ” 무료둜 μš΄μ˜λ©λ‹ˆλ‹€

πŸŸ¨Β λ°œν–‰λœ λ ˆν„°λŠ” μΉ΄ν†‘μœΌλ‘œ νŽΈν•˜κ²Œ λ³΄μ„Έμš”

Screen Shot 2024-05-06 at 12.48.47 AM.png

λ©˜νƒˆλ ˆν„°λŠ” ν˜„μž¬

600λͺ… μ΄μƒμ˜ 학생듀과 ν•¨κ»˜ν•˜κ³  μžˆμŠ΅λ‹ˆλ‹€

학생듀이 남겨쀀 μ†Œμ€‘ν•œ λ°©λͺ…둝

Untitled


Untitled

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Scroll CTA Button</title>
    <style>
        body {
            margin: 0;
        }

        #ctaButton {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            transition: opacity 0.3s ease-in-out;
            opacity: 0;
            z-index: 999;
        }

        #ctaButton button {
            padding: 10px 20px;
            background-color: #fff;
            color: #000;
            font-weight: bold;
            font-size: 18px;
            border: 2px solid #000;
            border-radius: 0px;
            cursor: pointer;
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
            transition: background-color 0.3s ease-in-out;
            white-space: normal;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        #ctaButton button:hover {
            background-color: #eee;
        }
    </style>
</head>
<body>
    <!-- Your website content goes here -->

    <!-- CTA button -->
    <div id="ctaButton">
        <button onclick="openChat()">λ©˜νƒˆλ ˆν„° ν•©λ₯˜ν•˜κΈ°</button>
    </div>

    <script>
    const ctaButton = document.getElementById('ctaButton');

    function checkScroll() {
        const scrollPosition = window.scrollY || document.documentElement.scrollTop;
        const scrollThreshold = 2750; // μˆ˜μ •λœ λΆ€λΆ„: ν”½μ…€ κ°’μœΌλ‘œ λ³€κ²½

        if (scrollPosition > scrollThreshold) {
            ctaButton.style.opacity = '1';
        } else {
            ctaButton.style.opacity = '0';
        }
    }

    function openChat() {
        const currentHour = new Date().getHours();
        const currentMinute = new Date().getMinutes();

        const linkToOpen = (currentHour >= 8 && currentHour <= 20 && currentMinute <= 55) ? '<http://pf.kakao.com/_AsxlBG>' : '<http://pf.kakao.com/_AsxlBG>';

        window.open(linkToOpen, '_blank');
    }

    window.addEventListener('scroll', checkScroll);
    </script>
</body>
</html>