top of page

연락

주소    -   종로구 진흥로25길 29

핸드폰 -  +82 10 9737 2412

이메일 -   johann.nikolaus.seliger@gmail.com

bottom of page
import wixWindow from 'wix-window'; import { onReady } from 'wix-window'; $w.onReady(() => { // Mobile only if (wixWindow.formFactor === "Mobile") { // Wait for Wix to fully build the DOM setTimeout(() => { const element = document.getElementById("#mobileButton1"); if (element) { // Force Wix to let us control the element element.style.position = "fixed"; element.style.bottom = "10px"; element.style.left = "10px"; element.style.zIndex = "99999"; // Always on top element.style.pointerEvents = "auto"; // Clickable } else { console.warn("mobileText1 not found"); } }, 500); // Delay required for Wix mobile DOM } });