2016年(59)
分类: Web开发
2016-11-07 09:54:54
本文为 兄弟连IT教育 机构官方 HTML5培训 教程,主要介绍:HTML5移动开发之路(37)——jqMobi快速入门
拷贝上面的/css目录、/plugins目录、/ui目录、/appframework.js文件,如下图所示。
如果需要也可以拷贝index.html,然后自己修改,比如上面我的index01.html和index02.html
接下来引入css与js文件
index01.html
上面代码说明:
1、UI Container
2、Content Area
3、panels 是jqMobi的核心 可以有多个
4、header与footer
(1)每个panel单独的header与footer
(2)公用的header和footer可以在多个panel中调用
- <div id="afui">
- <span style="white-space:pre"> span><div id="content">
- <span style="white-space:pre"> span><div id="main" title="Welcome" class="panel" selected="true">
- <span style="white-space:pre"> span><header>
- <span style="white-space:pre"> span><h1>Welcomeh1>
- <span style="white-space:pre"> span><a class="button" style="float:right;" class="icon home">a>
- <span style="white-space:pre"> span>header>
- <span style="white-space:pre"> span>对应页面的内容
- <span style="white-space:pre"> span><footer>
- <span style="white-space:pre"> span><a href='#about' class='icon info'>Abouta>
- <span style="white-space:pre"> span>footer>
- <span style="white-space:pre"> span>div>
- <span style="white-space:pre"> span>div>
- div>
(3)另一种方法
- <div id="afui">
- <span style="white-space:pre"> span><div id="content">
- <span style="white-space:pre"> span><div id="main" title="Welcome" class="panel" selected="true" data-footer="custom_footer"
- <span style="white-space:pre"> span>data-header="custom_header">
- <span style="white-space:pre"> span>对应页面的内容
- <span style="white-space:pre"> span>div>
- <span style="white-space:pre"> span><header id="custom_header">
- <span style="white-space:pre"> span><h1>Welcomeh1>
- <span style="white-space:pre"> span><a class="button" style="float:right;" class="icon home">a>
- <span style="white-space:pre"> span>header>
- <span style="white-space:pre"> span><footer id="custom_footer">
- <span style="white-space:pre"> span><a href='#about' class='icon info'>Abouta>
- <span style="white-space:pre"> span>footer>
- <span style="white-space:pre"> span>div>
- div>
- <div id="header">
- <a onclick="$.ui.toggleSideMenu();" class="button">Toggle Side Menua>
- div>
- <div id="content">
- <div id="main" title="Welcome" class="panel" selected="true">
- 内容
- div>
- <div id="about" title="About" class="panel" data-nav="second_nav">
- div>
- div>
- //底部
- <div id="navbar">
- <a target="#welcome" class="icon home">Homea>
- div>
运行效果