五】、jQueryMobile工具栏

头部、尾部的定位:
data-position='inline' 默认
data-position='fixed' 固定在头部/尾部
data-fullscreen='true' 固定在头部/尾部(要设置fixed),但是点击显示,再点击隐藏

<div data-role='header' data-position='inline'></div>
<div data-role='footer' data-position='inline'></div>

//代码:

 <!--在头部工具栏添加主页和搜索-->
<div data-role="page">
<div data-role="header" data-position="fixed" data-fullscreen="true">
<a href="javascript:void(0)" class="ui-btn ui-icon-home ui-btn-icon-left">主页</a>
<h1>header</h1>
<a href="javascript:void(0)" class="ui-btn ui-icon-search ui-btn-icon-left">搜索</a>
</div>
<div data-role="content">
content goes there </div>
<div data-role="footer" style="text-align: center;" data-position="fixed" data-fullscreen="true">
<!--<h1>footer</h1>-->
<div data-role="controlgroup" data-type="horizontal">
<a href="javascript:void(0)" class="ui-btn ui-icon-plus ui-btn-icon-left">关注我</a>
<a href="javascript:void(0)" class="ui-btn ui-icon-plus ui-btn-icon-left">关注我</a>
<a href="javascript:void(0)" class="ui-btn ui-icon-plus ui-btn-icon-left">关注我</a>
</div>
</div>
</div>

六】、导航栏
创建导航栏
data-role='navbar'
添加导航栏中按钮被按下的状态:
class='ui-btn-active'
添加导航栏中按钮被按下的状态(持续的状态,返回后仍然被选中):
class='ui-btn-active ui-state-persist'
定位导航栏中的图标:
data-iconpos='left'

七】、可折叠块
创建可折叠块:
data-role='collapsible'
h1>p>
h1是标题,p是可折叠的内容块

设置展开
data-collapsed='false'

可折叠块集合
data-role='collapsibleset'

改变可折叠块的样式,使其宽度撑满屏幕
data-inset='false'

变小:
data-mini='true'

改变可折叠块的图标:
data-collapsed-icon='arrow-d'
data-expanded-icon='arrow-u'

jQueryMobile(三)的更多相关文章

  1. jquerymobile知识点三:弹出层popup

    弹出层popup很简单,主要就是弹出验证,登陆注册,提交信息之类的,下面是我写好的一个demo... <div data-role="popup" id="popu ...

  2. [deviceone开发]-do_Webview加载JQueryMobile的示例

    一.简介 JQueryMobile是JQuery的移动版,不过它并没有像JQuery那么成功.我们只是使用JQueryMobile来展示do_Webview加载第三方js框架.适合所有开发者.二.效果 ...

  3. Jquerymobile 简单安装

    需要导入三个文件jquery,jquerymobile,css(jquerymobile地址:http://jquerymobile.com/) <script src="js/jqu ...

  4. jquerymobile页面跳转和参数传递

    http://blog.csdn.net/chen052210123/article/details/7481578 页面跳转: 页面跳转时pagebeforechange事件会被触发两次,通过$(d ...

  5. JqueryMobile入门基础附源码下载

    最近要做一个手机版的网站,所以就了解了一点JqueryMObile,下面是我整理的笔记,现在分享给大家,希望朋友们喜欢,先给个首页看看吧!!! 一.JqueryMobile基本页面结构 <!DO ...

  6. jqueryMobile

    <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8& ...

  7. 自学jQueryMobile之简单创建页面

    首先简答介绍一下JQueryMobile吧,我觉得用一句话来讲就是可以 "写更少的代码,做更多的事情" : 它可以通过一个灵活及简单的方式来布局网页,且兼容所有移动设备.这也是我自 ...

  8. JqueryMobile基础之创建页面

    首先简答介绍一下JQueryMobile吧,我觉得用一句话来讲就是可以 "写更少的代码,做更多的事情" : 它可以通过一个灵活及简单的方式来布局网页,且兼容所有移动设备.这也是我自 ...

  9. JqueryMobile学习记录一

    安装 做页面之前首先引用三个文件: <link href="/Scripts/jquery.mobile-1.4.5/jquery.mobile-1.4.5.css" rel ...

随机推荐

  1. 使用Spring IOC容器引用外部属性文件

    一.引用外部属性文件 1.编写属性文件,以键值对形式存储,并放置在类路径(src)下 jdbc.jdbcUrl=jdbc:mysql://localhost:3306/BOOKSTORE?rewrit ...

  2. 模仿 spring IOC Annotation版自动装配

    spring 有两大核心 IOC和AOP.  IOC (inversion of control) 译为 控制反转,也可以称为 依赖注入 ; AOP(Aspect Oriented Programmi ...

  3. ubuntu14.04 搭建samba

        1.安装软件      sudo apt-get remove libwbclient0      sudo apt-get remove samba-common      sudo apt ...

  4. Scene is unreachable due to lack of entry points and does not have an identifier for runtime access via -instantiateViewControllerWithIdentifier解决办法

    使用Storyboard时出现以下警告: warning: Unsupported Configuration: Scene is unreachable due to lack of entry p ...

  5. atcoder 2643 切比雪夫最小生成树

    There are N towns on a plane. The i-th town is located at the coordinates (xi,yi). There may be more ...

  6. Linux UDEV提权过程

    1.下载攻击脚本 [test@H0f ~]$ wget http://www.extmail .org/source/exploit-udev-8478 --2018-04-02 01:21:00-- ...

  7. js网页瀑布流布局

    瀑布流布局思路: 1.css样式,图片的父级div样式设置为定位或者浮动 2.找出图片父级元素(box)和最外元素(main):获取box的宽度和main的宽,然后计算main容器一行能容纳多少个bo ...

  8. Yii2 前台控制器访问权限控制

    class BaseController extends Controller { public function behaviors() { return [ 'access' => [ 'c ...

  9. 13-----BBS论坛

    BBS论坛(十三) 13.1点击更换图形验证码 (1)front/signup.html <div class="form-group"> <div class= ...

  10. 前端面试题 ----css篇

    转载自https://www.cnblogs.com/zhangshuda/p/8465043.html,感谢原博主 1.css盒模型有哪些及区别content-box border-box padd ...