pc 메인 <head></head> 안에 적용.
<script>
// Mobile 이동 관련 스크립트 추가
var uAgent = navigator.userAgent.toLowerCase();
// 아래는 모바일 장치들의 모바일 페이지 접속을위한 스크립트
var mobilePhones = new Array('iphone', 'ipod', 'ipad', 'android', 'blackberry', 'windows ce','nokia', 'webos', 'opera mini', 'sonyericsson', 'opera mobi', 'iemobile');
for (var i = 0; i < mobilePhones.length; i++){
if (uAgent.indexOf(mobilePhones[i]) != -1){
location.href="index_mobile.html"; // 이동할 모바일 링크
}
};
</script>
728x90
'퍼블리싱 > HTML | CSS | Javascript' 카테고리의 다른 글
background linear gradient 사용시 border-bottom에 하얀색 라인이 생길때 (0) | 2022.09.26 |
---|---|
vanilla javascript accordion menu (0) | 2022.06.07 |
반응형 subpage aside css (0) | 2019.07.26 |
scss로 프리픽스 자동으로 붙이는 mixin 지정 (0) | 2019.07.24 |
스크롤바 스타일 변경 (ie안됨) (0) | 2019.07.24 |