본문 바로가기

WEB_TECH/모바일웹

모바일 웹 기본페이지

이것을 기본페이지로 설정해 놓고 사용하면 편리할 것 같습니다.


<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">

<head>


<meta http-equiv="Content-Type" content="text;html; charset=euc-kr" />

<!-- 디바이스 화면설정 -->

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0. user-scalable=no," />

<!-- 상태바의 색상을 정하는 코드 -->

<meta name="apple-mobile-web-app-status-bar-style" content="black" />

<!-- 모바일 웹앱 형태로 설정 -->

<meta name="apple-mobile-web-app-capable" content="yes" />


<title>DOCUMENT</title>

<style type="text/css">

#wrap{ height:1000px; paddig:50px 0; }

</style>


<!-- 주소창 숨기기 -->

<script type="text/javascript" language="javascript">

window.addEventListener('load', function(){

  setTimeout(scrollTo, 0, 0, 1);

}, 

false);

</script>


<!-- 모바일웹 바로가기 아이콘 -->

<link rel="apple-touch-icon" href="app_icon.png" />


<body>

<div id="wrap">


<div>

</body>

</html>



모바일웹기본페이지.html