Help
RSS
API
Feed
Maltego
Contact
Domain > www.flowerstudy.co.kr
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2018-08-03
101.79.5.64
(
ClassC
)
2025-08-04
13.52.188.95
(
ClassC
)
Port 443
HTTP/1.1 200 OKAccept-Ranges: bytesAge: 1Cache-Control: public,max-age0,must-revalidateCache-Status: Netlify Edge; fwdmissContent-Length: 6938Content-Type: text/html; charsetUTF-8Date: Mon, 04 Aug 2025 08:39:15 GMTEtag: 5c55bf25b17c34a02ee6e1e8044b1ba1-sslServer: NetlifyStrict-Transport-Security: max-age31536000X-Nf-Request-Id: 01K1T3R8HWFFKDERD9PQN9APDH !DOCTYPE html>html langko>head> meta charsetUTF-8> title>플라워스터디는 도서출판 수풀미디어에서 관리됩니다./title> style> body { margin: 0; padding: 0; background: #f5f5f5; font-family: sans-serif; overflow-x: hidden; height: 100vh; display: flex; justify-content: center; align-items: center; } .carousel-container { perspective: 1400px; width: 100vw; max-width: 1000px; height: 100vh; position: relative; } .carousel { width: 100%; height: 100%; position: absolute; top: 50%; left: 50%; transform-style: preserve-3d; transform: translate(-50%, -50%) rotateY(0deg); transition: transform 1s; } .book { width: 220px; height: 320px; position: absolute; top: 50%; left: 50%; transform-style: preserve-3d; transition: transform 0.5s; transform-origin: center; cursor: pointer; } .book img { width: 100%; height: 100%; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); } .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); z-index: 1000; overflow-y: auto; } .modal-content { background: #fff; margin: 5% auto; padding: 20px; max-width: 700px; border-radius: 10px; } .modal-content iframe, .modal-content img.detail-image { width: 100%; border-radius: 8px; margin-bottom: 10px; } .modal-close { position: absolute; top: 10px; right: 20px; font-size: 30px; color: #fff; cursor: pointer; } /style>/head>body> div classcarousel-container> div classcarousel idcarousel>/div> /div> div classmodal idbookModal> span classmodal-close onclickcloseModal()>×/span> div classmodal-content> div idmodalMedia>/div> h2 idmodalTitle>/h2> p idmodalDesc>/p> div idmodalImages>/div> /div> /div> script> const books { title: 2025 화훼장식기능사 필기&실기, desc: 필기×실기×미니북 구성의 수험서. CBT 모의고사 포함!, img: https://cheolho-bae.github.io/my-first-website/images/k_ps_1.jpg }, { title: 2025 화훼장식기능사 필기 합격보장 (영상), desc: 필기×미니북 구성 수험서. 유튜브 영상 수록!, img: https://cheolho-bae.github.io/my-first-website/images/k_p_1.jpg, video: https://www.youtube.com/embed/dQw4w9WgXcQ, details: https://cheolho-bae.github.io/my-first-website/images/k_ps_1.jpg, https://cheolho-bae.github.io/my-first-website/images/k_ps_1_intro.jpg }, { title: Peony 카드, desc: 수풀미디어의 감성 일러스트 카드. 40종 이상 구성, img: https://cheolho-bae.github.io/my-first-website/images/card.jpg }, { title: 2025 화훼장식기능사 필기, desc: Ncs 8개 과목별 출제 빈도 분석 제시, img: https://cheolho-bae.github.io/my-first-website/images/k_ps_pre(1).jpg }, { title: 2025 화훼장식기능사 필기, desc: 단원별 핵심이론을 보기좋게 편집한 구성, img: https://cheolho-bae.github.io/my-first-website/images/k_ps_pre(2).jpg }, { title: 2025 화훼장식기능사 필기, desc: 풍부한 사진과 일러스트 제공, img: https://cheolho-bae.github.io/my-first-website/images/k_ps_pre(11).jpg }, { title: 2025 화훼장식기능사 필기, desc: 풍부한 사진과 일러스트 제공, img: https://cheolho-bae.github.io/my-first-website/images/k_ps_pre(12).jpg }, { title: 2025 화훼장식기능사 필기, desc: 풍부한 사진과 일러스트 제공, img: https://cheolho-bae.github.io/my-first-website/images/k_ps_pre(13).jpg }, { title: 2025 화훼장식기능사 필기, desc: 단원별 출제예상문제 제공, img: https://cheolho-bae.github.io/my-first-website/images/k_ps_pre(14).jpg }, { title: 2025 화훼장식기능사 필기, desc: 매년 필기시험 분석 및 개정, 최다 출제 문제 수록, img: https://cheolho-bae.github.io/my-first-website/images/k_ps_pre(15).jpg } ; const carousel document.getElementById(carousel); const angle 360 / books.length; let currRotate 0; books.forEach((book, i) > { const el document.createElement(div); el.className book; el.style.transform `rotateY(${i * angle}deg) translateZ(500px)`; el.setAttribute(data-title, book.title); el.setAttribute(data-desc, book.desc); el.setAttribute(data-img, book.img); if (book.video) el.setAttribute(data-video, book.video); if (book.details) el.setAttribute(data-details, JSON.stringify(book.details)); el.innerHTML `img src${book.img} alt${book.title} />`; el.addEventListener(click, openModal); carousel.appendChild(el); }); function rotate(dir) { currRotate + dir * angle; carousel.style.transform `translate(-50%, -50%) rotateY(${currRotate}deg)`; } let autoRotate setInterval(() > rotate(1), 3000); function openModal(e) { const book e.currentTarget; const img book.getAttribute(data-img); const title book.getAttribute(data-title); const desc book.getAttribute(data-desc); const video book.getAttribute(data-video); const details JSON.parse(book.getAttribute(data-details) || ); document.getElementById(modalTitle).textContent title; document.getElementById(modalDesc).textContent desc; const modalMedia document.getElementById(modalMedia); const modalImages document.getElementById(modalImages); modalMedia.innerHTML ; modalImages.innerHTML ; if (video) { modalMedia.innerHTML `iframe src${video} frameborder0 allowfullscreen>/iframe>`; } else { modalMedia.innerHTML `img src${img} classdetail-image />`; } details.forEach(url > { modalImages.innerHTML + `img src${url} classdetail-image />`; }); document.getElementById(bookModal).style.display block; } function closeModal() { document.getElementById(bookModal).style.display none; } /script>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]