'2025/04'에 해당되는 글 2건

  1. 2025.04.03 모바일 페이지, pc 페이지 구분
  2. 2025.04.03 2d to 3d

function redirectPage() {
    const isMobile = /Mobi|Android|iPhone|iPad/i.test(navigator.userAgent);
    const isLandscape = window.matchMedia("(orientation: landscape)").matches;

    if (isMobile && isLandscape) {
        window.location.href = "mobile-landscape.html"; // 모바일 가로용 페이지
    } else if (!isMobile) {
        window.location.href = "desktop.html"; // PC용 페이지
    } else {
        window.location.href = "mobile.html"; // 모바일 세로용 페이지
    }
}

// 페이지 로드 시 실행
redirectPage();

// 화면 크기 변경 시 다시 체크 (예: 모바일에서 가로/세로 전환)
window.addEventListener("resize", redirectPage);

Posted by 아기곰푸우
,

https://huggingface.co/spaces/JeffreyXiang/TRELLIS

 

TRELLIS - a Hugging Face Space by JeffreyXiang

Running on Zero

huggingface.co

 

 

하루 GPU 사용 쿼터제한이 있음

Posted by 아기곰푸우
,