jqueryMobile使用樣本分享,jquerymobile樣本

來源:互聯網
上載者:User

jqueryMobile使用樣本分享,jquerymobile樣本

jQuery Mobile是用戶端代碼,但其基於ajax技術與伺服器端互動。因此擁有一個Web Service,才能更好的體驗jQuery Mobile的功能。這裡不打算介紹Web Service的搭建過程,朋友們可以根據自己的實際需要自行搭建。

樣本一:

<!DOCTYPE html> <html lang="zh-CN"> <head>   <meta charset="UTF-8">   <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">   <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>   <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>   <title>jqueryMoblie</title> </head> <body>   <div data-role="page" id="pageone"> <div data-role="header"> <h1>表徵圖</h1> </div> <div data-role="content">  <p>定位元影像標:</p>  <a href="#link" data-role="button" data-icon="search" data-iconpos="top">頂部</a>  <a href="#link" data-role="button" data-icon="search" data-iconpos="right">右側</a>  <a href="#link" data-role="button" data-icon="search" data-iconpos="bottom">底部</a>  <a href="#link" data-role="button" data-icon="search" data-iconpos="left">左側</a> </div> <div data-role="footer"> <h1>底部文本</h1> </div></div>  </body> </html>

 示範圖:

樣本二:

<!DOCTYPE html><html><head><link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">    <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>    <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script></head><body><div data-role="page" id="pageone"> <div data-role="header">  <h1>可摺疊塊</h1> </div> <div data-role="content">  <div data-role="collapsible">   <h1>點擊我 - 我可以摺疊!</h1>   <p>我是可摺疊的內容。</p>  </div> </div> <div data-role="footer">  <h1>頁尾文本</h1> </div></div> </body></html>

示範圖

樣本三:

<!DOCTYPE html><html lang="zh_CN"><head><meta charset="utf-8"><!-- <link rel="stylesheet" href="http://apps.bdimg.com/libs/jquerymobile/1.4.2/jquery.mobile.min.css"><script src="http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script><script src="http://apps.bdimg.com/libs/jquerymobile/1.4.2/jquery.mobile.min.js"></script> --><link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">  <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>  <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script></head><body><div data-role="page" id="pageone"> <div data-role="header">  <h1>可摺疊集合</h1> </div> <div data-role="content">  <div data-role="collapsible-set">   <div data-role="collapsible">    <h3>點擊我 - 我可以摺疊!</h3>     <p>我是可摺疊的內容。</p>   </div>   <div data-role="collapsible">    <h3>點擊我 - 我可以摺疊!</h3>    <p>我是可摺疊的內容。</p>   </div>   <div data-role="collapsible">    <h3>點擊我 - 我可以摺疊!</h3>    <p>我是可摺疊的內容。</p>   </div>   <div data-role="collapsible">    <h3>點擊我 - 我可以摺疊!</h3>    <p>我是可摺疊的內容。</p>   </div>  </div> </div> <div data-role="footer">  <h1>在此插入底部文本</h1> </div></div> </body></html>

示範圖:

樣本四:

<html lang="zh_CN"><head><meta charset="utf-8"><link rel="stylesheet" href="http://apps.bdimg.com/libs/jquerymobile/1.4.2/jquery.mobile.min.css"><script src="http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script><script src="http://apps.bdimg.com/libs/jquerymobile/1.4.2/jquery.mobile.min.js"></script><style>.ui-block-a, .ui-block-b, .ui-block-c {background-color: lightgray;border: 1px solid black;height: 100px;font-weight: bold;text-align: center;padding: 30px;}</style></head><body><div data-role="page" id="pageone"> <div data-role="header"> <h1>自訂的列</h1> </div> <div data-role="content">  <p>三列樣式布局:</p>  <div class="ui-grid-b">   <div class="ui-block-a"><span>第一個列</span></div>   <div class="ui-block-b"><span>第二個列</span></div>   <div class="ui-block-c"><span>第三個列</span></div>  </div> </div></div> </body></html>

示範圖

樣本五:

<!DOCTYPE html><html lang="zh-CN"><head><meta charset="utf-8"><link rel="stylesheet" href="http://apps.bdimg.com/libs/jquerymobile/1.4.2/jquery.mobile.min.css"><script src="http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script><script src="http://apps.bdimg.com/libs/jquerymobile/1.4.2/jquery.mobile.min.js"></script></head><body><div data-role="page" id="pageone"> <div data-role="content">  <h2>有序列表:</h2>  <ol data-role="listview">   <li><a href="#">清單項目</a></li>   <li><a href="#">清單項目</a></li>   <li><a href="#">清單項目</a></li>  </ol>  <h2>無序列表:</h2>  <ul data-role="listview">   <li><a href="#">清單項目</a></li>   <li><a href="#">清單項目</a></li>   <li><a href="#">清單項目</a></li>  </ul> </div></div> </body></html>

示範圖

在介紹過程中有不對的地方或不嚴謹的地方,歡予以糾正。感謝大家!

與其他教程不同的是,本教程都是通一個個執行個體進行展示。關鍵性介紹都會在代碼中穿插。

您可能感興趣的文章:
  • jquery Mobile入門—多頁面切換樣本學習
  • jQuery Mobile頁面跳轉後未載入外部JS原因分析及解決
  • jquery mobile實現撥打到電話功能的幾種方法
  • jquerymobile局部渲染的各種重新整理方法小結
  • jquery mobile的觸控點擊事件會多次觸發問題的解決方案
  • jquery mobile頁面跳轉後樣式丟失js失效的解決方案
  • jQueryMobile之Helloworld與頁面切換的方法
  • 使用jQueryMobile實現滑動翻頁效果的方法
  • jquery.mobile 共同布局遇到的問題小結
  • 詳解jQuery Mobile自訂標籤

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.