HTML5入门

小强的HTML5移动开发之路(37)——jqMobi快速入门

字号+ 作者: 来源: 2015-06-02 14:39 我要评论( )

《 小强的HTML5移动开发之路(33) jqMobi基础 》中我们了解了什么是jqMobi,并从官方下载了jqMobi开发包,下载后解压目录如下: 拷贝上面的/css目录、/plugins目录、/ui目录、/appframework.js文件,如下图所示。 如果需要也可以拷贝index.html,然后自己修

小强的HTML5移动开发之路(33)—— jqMobi基础》中我们了解了什么是jqMobi,并从官方下载了jqMobi开发包,下载后解压目录如下:

拷贝上面的/css目录、/plugins目录、/ui目录、/appframework.js文件,如下图所示。

如果需要也可以拷贝index.html,然后自己修改,比如上面我的index01.html和index02.html

接下来引入css与js文件

 

  1. <link href="css/af.ui.css" rel="stylesheet" type="text/css"/>  
  2. <link href="css/icons.css" rel="stylesheet" type="text/css"/>  
  3. <script src="appframework.js" type="text/javascript"></script>  
  4. <script src="ui/appframework.ui.js" type="text/javascript"></script>  

 

index01.html

 

  1. <!DOCTYPE html>   
  2. <html>  
  3. <head>  
  4. <meta charset="utf-8">  
  5. <title>jqMobi</title>  
  6. <link href="css/af.ui.css" rel="stylesheet" type="text/css"/>  
  7. <link href="css/icons.css" rel="stylesheet" type="text/css"/>  
  8. <script src="appframework.js" type="text/javascript"></script>  
  9. <script src="ui/appframework.ui.js" type="text/javascript"></script>  
  10. </head>   
  11. <body>   
  12.     <div id="afui">  
  13.         <div id="content">  
  14.             <div id="home" title="首页" class="panel" selected="true"  
  15.                 data-footer="custom_footer">  
  16.               
  17.             </div>  
  18.             <div id="about" title="关于我们" class="panel"  
  19.                 data-footer="custom_footer">  
  20.                   
  21.             </div>  
  22.             <header id="custom_header">  
  23.                 <h1>首页</h1>  
  24.             </header>  
  25.             <footer id="custom_footer">  
  26.                 <a href='#home' class='icon home'>首页</a>  
  27.                 <a href='#about' class='icon info'>关于我们</a>  
  28.             </footer>  
  29.         </div>  
  30.     </div>  
  31. </body>  
  32. </html>  
上面代码说明:

 

1、UI container

 

  1. <div id="afui">  
  2. 这里面是写的内容  
  3. </div>  
2、Content Area

 

 

  1. <div id="afui">  
  2. <span style="white-space:pre">  </span><div id="content">  
  3. <span style="white-space:pre">      </span><!-- this is where your panels will go -->  
  4. <span style="white-space:pre">      </span>这里写的是 panel  
  5. <span style="white-space:pre">  </span></div>  
  6. </div>  
3、panels 是jqMobi的核心 可以有多个

 

 

  1. <div id="afui">  
  2. <span style="white-space:pre">  </span><div id="content">  
  3. <span style="white-space:pre">      </span><div id="main" title="Welcome" class="panel" selected="true">  
  4. <span style="white-space:pre">          </span>在这个里面写我们的对应内容  
  5. <span style="white-space:pre">      </span></div>  
  6. <span style="white-space:pre">  </span></div>  
  7. </div>  
4、header与footer

 

(1)每个panel单独的header与footer

 

  1. <div id="afui">  
  2. <span style="white-space:pre">  </span><div id="content">  
  3. <span style="white-space:pre">      </span><div id="main" title="Welcome" class="panel" selected="true">  
  4. <span style="white-space:pre">      </span><header>  
  5. <span style="white-space:pre">          </span><h1>Welcome</h1>  
  6. <span style="white-space:pre">          </span><a class="button" style="float:right;" class="icon home"></a>  
  7. <span style="white-space:pre">      </span></header>  
  8. <span style="white-space:pre">      </span>对应页面的内容  
  9. <span style="white-space:pre">      </span><footer>  
  10. <span style="white-space:pre">          </span><a href='#about' class='icon info'>About</a>  
  11. <span style="white-space:pre">      </span></footer>  
  12. <span style="white-space:pre">      </span></div>  
  13. <span style="white-space:pre">  </span></div>  
  14. </div>  
(2)公用的header和footer可以在多个panel中调用

 

  1. <div id="afui">  
  2. <span style="white-space:pre">  </span><div id="content">  
  3. <span style="white-space:pre">      </span><div id="main" title="Welcome" class="panel" selected="true" data-footer="custom_footer"  
  4. <span style="white-space:pre">          </span>data-header="custom_header">  
  5. <span style="white-space:pre">      </span>对应页面的内容  
  6. <span style="white-space:pre">      </span></div>  
  7. <span style="white-space:pre">      </span><header id="custom_header">  
  8. <span style="white-space:pre">          </span><h1>Welcome</h1>  
  9. <span style="white-space:pre">          </span><a class="button" style="float:right;" class="icon home"></a>  
  10. <span style="white-space:pre">      </span></header>  
  11. <span style="white-space:pre">      </span><footer id="custom_footer">  
  12. <span style="white-space:pre">          </span><a href='#about' class='icon info'>About</a>  
  13. <span style="white-space:pre">      </span></footer>  
  14. <span style="white-space:pre">  </span></div>  
  15. </div>  
(3)另一种方法

 

  1. <div id="header">  
  2.     <!-- any additional HTML you want can go here -->  
  3.     <a onclick="$.ui.toggleSideMenu();" class="button">Toggle Side Menu</a>  
  4. </div>  
  5. <div id="content">  
  6.     <!-- this is where your panels will go -->  
  7.     <div id="main" title="Welcome" class="panel" selected="true">  
  8.         内容  
  9.     </div>  
  10.     <div id="about" title="About" class="panel" data-nav="second_nav">  
  11.     <!-- by setting data-nav the "second_nav" will be shown on this panel -->  
  12.     </div>  
  13. </div>  
  14.     //底部  
  15.     <div id="navbar">  
  16.     <a target="#welcome" class="icon home">Home</a>  
  17. </div>  

 

运行效果

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • HTML5常用标签总结

    HTML5常用标签总结

    2016-03-23 14:02

  • html5学得好不好,看掌握多少标签

    html5学得好不好,看掌握多少标签

    2015-09-28 12:53

  • 小强的HTML5移动开发之路(53)——jQueryMobile页面间参数传递

    小强的HTML5移动开发之路(53)——jQueryMobile页面间参数传递

    2015-06-02 14:32

  • 小强的HTML5移动开发之路(52)——jquerymobile中的触控交互

    小强的HTML5移动开发之路(52)——jquerymobile中的触控交互

    2015-06-02 14:34

网友点评