pc상 웹 페에지의 핵심적인 기능만을 모바일로 구현한다
모든 기능을 모바일로 구현하지는 않아도 된다

 

예)

www.jquerymobile.com=> 모바일

www.jquery.com=> pc

 

 


data-role 속성을 이용하여 기능 부여

<div data-role="page">
  <div data-role="header">
    <h1>header</h1>
  </div>
  <div data-role="content">
    <p>content</p>
  </div>
  <div data-role="footer">
    <h1>footer</h1>
  </div>
</div>

 

+ Recent posts