Chinaunix首页 | 论坛 | 博客
  • 博客访问: 77024
  • 博文数量: 59
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 600
  • 用 户 组: 普通用户
  • 注册时间: 2016-08-22 10:54
文章分类
文章存档

2016年(59)

我的朋友

分类: Web开发

2016-11-07 09:54:54

本文为 兄弟连IT教育 机构官方 HTML5培训 教程,主要介绍:HTML5移动开发之路(37)——jqMobi快速入门

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

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

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

接下来引入css与js文件

 

[plain] view plain copy
 
 print?在CODE上查看代码片派生到我的代码片
  1.   
  2.   
  3.   
  4.   

 

index01.html

 

[html] view plain copy
 
 print?在CODE上查看代码片派生到我的代码片
  1. >   
  2. <html>  
  3. <head>  
  4. <meta charset="utf-8">  
  5. <title>jqMobititle>  
  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.                 <href='#home' class='icon home'>首页a>  
  27.                 <href='#about' class='icon info'>关于我们a>  
  28.             footer>  
  29.         div>  
  30.     div>  
  31. body>  
  32. html>  

上面代码说明:

 

1、UI Container

 

[html] view plain copy
 
 print?在CODE上查看代码片派生到我的代码片
  1. <div id="afui">  
  2. 这里面是写的内容  
  3. div>  

2、Content Area

 

 

[html] view plain copy
 
 print?在CODE上查看代码片派生到我的代码片
  1. <div id="afui">  
  2. <span style="white-space:pre">  span><div id="content">  
  3. <span style="white-space:pre">      span>  
  4. <span style="white-space:pre">      span>这里写的是 panel  
  5. <span style="white-space:pre">  span>div>  
  6. div>  

3、panels 是jqMobi的核心 可以有多个

 

 

[html] view plain copy
 
 print?在CODE上查看代码片派生到我的代码片
  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

 

[html] view plain copy
 
 print?在CODE上查看代码片派生到我的代码片
  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>Welcomeh1>  
  6. <span style="white-space:pre">          span><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><href='#about' class='icon info'>Abouta>  
  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中调用

 

[html] view plain copy
 
 print?在CODE上查看代码片派生到我的代码片
  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>Welcomeh1>  
  9. <span style="white-space:pre">          span><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><href='#about' class='icon info'>Abouta>  
  13. <span style="white-space:pre">      span>footer>  
  14. <span style="white-space:pre">  span>div>  
  15. div>  
(3)另一种方法

 

[html] view plain copy
 
 print?在CODE上查看代码片派生到我的代码片
  1. <div id="header">  
  2.       
  3.     <onclick="$.ui.toggleSideMenu();" class="button">Toggle Side Menua>  
  4. div>  
  5. <div id="content">  
  6.       
  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.       
  12.     div>  
  13. div>  
  14.     //底部  
  15.     <div id="navbar">  
  16.     <target="#welcome" class="icon home">Homea>  
  17. div>  

 

运行效果

阅读(695) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~