"JQuery모바일 section, header, footer"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(사용자 2명의 중간 판 12개는 보이지 않습니다)
1번째 줄: 1번째 줄:
{{소문자}}
;jQuery Mobile section, header, footer
;jQuery Mobile section, header, footer
;jQuery 모바일 section, header, footer
;jQuery 모바일 section, header, footer
;jQuery모바일 섹션구조
==예제==
 
<source lang='html5'>
==주요 코드==
<syntaxhighlight lang='html5'>
<section id='page1' data-role='page'>
<section id='page1' data-role='page'>
   <header data-role='header'><h1>제목</h1></header>
   <header data-role='header'><h1>제목</h1></header>
11번째 줄: 13번째 줄:
   <footer data-role='footer'><h1>jmnote</h1></footer>
   <footer data-role='footer'><h1>jmnote</h1></footer>
</section>
</section>
</source>
</syntaxhighlight>
 
==예시==
<syntaxhighlight lang='html5'>
<!DOCTYPE html>
<meta charset="utf-8" />
<head>
  <title>섹션 예제</title>
  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
  <script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
  <script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>
</head>
<body>
  <section id='page1' data-role='page'>
    <header data-role='header'><h1>제목</h1></header>
    <div class='content'>
      <p>첫번째 페이지</p>
    </div>
    <footer data-role='footer'><h1>jmnote</h1></footer>
  </section>
</body>
</syntaxhighlight>
*예제: http://zetawiki.com/ex/jquery-mobile/jqm_sectioning.php


==같이 보기==
==같이 보기==
*[[jQuery모바일 두번째 페이지]]
*[[HTML5 section, header, footer]]
*[[HTML5 section, header, footer]]


[[분류: HTML5]]
[[분류:JQuery Mobile]]

2020년 11월 2일 (월) 02:53 기준 최신판

jQuery Mobile section, header, footer
jQuery 모바일 section, header, footer
jQuery모바일 섹션구조

1 주요 코드[ | ]

<section id='page1' data-role='page'>
  <header data-role='header'><h1>제목</h1></header>
  <div class='content'>
    <p>첫번째 페이지</p>
  </div>
  <footer data-role='footer'><h1>jmnote</h1></footer>
</section>

2 예시[ | ]

<!DOCTYPE html>
<meta charset="utf-8" />
<head>
  <title>섹션 예제</title>
  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
  <script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
  <script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>
</head>
<body>
  <section id='page1' data-role='page'>
    <header data-role='header'><h1>제목</h1></header>
    <div class='content'>
      <p>첫번째 페이지</p>
    </div>
    <footer data-role='footer'><h1>jmnote</h1></footer>
  </section>
</body>

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}