본문 바로가기
Develop/Etc

모바일 바로가기 이미지 생성

by bellsilver7 2016. 9. 26.
728x90

<script> 

var userAgent = navigator.userAgent.toLowerCase(); // 접속 핸드폰 정보 

  

// 모바일 홈페이지 바로가기 링크 생성 

if(userAgent.match('iphone')) { 

document.write('<link rel="apple-touch-icon" href="이미지 경로" />') 

} else if(userAgent.match('ipad')) { 

document.write('<link rel="apple-touch-icon" sizes="72*72" href="이미지 경로" />') 

} else if(userAgent.match('ipod')) { 

document.write('<link rel="apple-touch-icon" href="이미지 경로" />') 

} else if(userAgent.match('android')) { 

document.write('<link rel="shortcut icon" href="이미지 경로" />') 

</script>

728x90

'Develop > Etc' 카테고리의 다른 글

Ionic 프로젝트 생성  (0) 2016.09.28
Ionic 개발환경 구축  (0) 2016.09.28
사이트 분석 서비스  (0) 2016.09.19
Sequel Pro  (0) 2016.09.04
Homebrew 설치  (0) 2016.09.04

댓글