document.write(" const ORIGINAL_VISIBLE_TOP = 150; const VISIBLE_TOP = 50; const INITIAL_TOP = -100 - VISIBLE_TOP; var ref = ''; var adIframe = document.createElement(\"iframe\"); adIframe.src = \"//ad.adinc.kr/cgi-bin/PelicanC.dll?impr?pageid=098C&out=iframe\"; adIframe.width = \"100%\"; adIframe.height = \"100\"; adIframe.frameBorder = \"0\"; adIframe.scrolling = \"no\"; adIframe.referrerPolicy = \"unsafe-url\"; adIframe.allowSameOrigin = true; var watermark = document.createElement(\"div\"); watermark.style.position = \"absolute\"; watermark.style.top = \"0\"; watermark.style.left = \"0\"; watermark.style.width = \"15px\"; watermark.style.height = \"15px\"; watermark.style.backgroundColor = \"rgba(0, 0, 0, 0.5)\"; watermark.style.color = \"#fff\"; watermark.style.fontWeight = \"bold\"; watermark.style.fontSize = \"10px\"; watermark.style.textAlign = \"center\"; watermark.style.lineHeight = \"15px\"; watermark.textContent = \"AD\"; const closeButton = document.createElement(\"div\"); closeButton.style.position = \"absolute\"; closeButton.style.right = \"0\"; closeButton.style.top = \"0\"; closeButton.style.width = \"15px\"; closeButton.style.height = \"15px\"; closeButton.style.backgroundColor = \"transparent\"; closeButton.style.color = \"#fff\"; closeButton.style.fontSize = \"15px\"; closeButton.style.fontWeight = \"bold\"; closeButton.style.cursor = \"pointer\"; closeButton.style.zIndex = \"9999999\"; closeButton.style.backgroundColor = \"rgba(0, 0, 0, 0.5)\"; closeButton.style.display =\"flex\"; closeButton.style.alignItems = \"center\"; closeButton.style.flexDirection=\"column-reverse\"; closeButton.style.flexWrap=\"wrap\"; closeButton.style.justifyContent=\"center\"; closeButton.textContent = \"X\"; closeButton.addEventListener(\"click\", function () { adContainer.style.display = \"none\"; }); var adContainer = document.createElement(\"div\"); adContainer.style.width = \"100%\"; adContainer.style.height = \"100px\"; adContainer.style.margin = \"0 auto\"; adContainer.style.position = \"relative\"; adContainer.appendChild(adIframe); adContainer.appendChild(closeButton); var floatingContainer = document.createElement(\"div\"); floatingContainer.style.width = \"100%\"; floatingContainer.style.backgroundColor = \"#efefef\"; floatingContainer.style.position = \"fixed\"; floatingContainer.style.top = `${INITIAL_TOP}px`; floatingContainer.style.transition = \"top 0.5s\"; floatingContainer.style.zIndex = \"999999999\"; floatingContainer.appendChild(adContainer); document.body.appendChild(floatingContainer); var isScrolling; var lastScrollTop = 0; window.addEventListener('scroll', function () { window.clearTimeout(isScrolling); isScrolling = setTimeout(function () { var scrollTop = window.scrollY || document.documentElement.scrollTop; if (scrollTop >= ORIGINAL_VISIBLE_TOP) { floatingContainer.style.top = `${VISIBLE_TOP}px`; } else { floatingContainer.style.top = `${INITIAL_TOP}px`; } lastScrollTop = scrollTop; }, 400);/* window.clearTimeout(isScrolling); floatingContainer.style.top = `${INITIAL_TOP}px`; isScrolling = setTimeout(function () { var scrollTop = window.scrollY || document.documentElement.scrollTop; if (scrollTop >= ORIGINAL_VISIBLE_TOP) { floatingContainer.style.top = `${VISIBLE_TOP}px`; } lastScrollTop = scrollTop; }, 400);*/ });
´º½Ã½º_¾ÖµåÅÍÄ¡
")