jQuery Mobile 主题
Posted yuya670
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery Mobile 主题相关的知识,希望对你有一定的参考价值。
jQuery Mobile 提供了 2 种不同的主题样式, 从 "a" 到 "b" - 每一种主题的按钮,工具条,内容块等等颜色都不一致,每个主题的视觉效果也不一样。
通过设置元素的data-theme属性可以自定义应用的外观:
<a href="#" class="ui-btn ui-btn-a|b">按钮</a>
值 | 描述 | 实例 |
---|---|---|
a | 页面为灰色背景黑色文字 头部与底部均为灰色背景黑色文字 按钮为灰色背景黑色文字 激活的按钮和链接为白色文本蓝色背景 input 输入框中 placeholder 属性值为浅灰色,value 值为黑色 |
尝试一下 |
b | 页面为黑色背景白色文字 头部与底部均为黑色背景白色文字 按钮为白色文字木炭背景 激活的按钮和链接为白色文本蓝色背景 input 输入框中 placeholder 属性值为浅灰色,value 值为白色 |
尝试一下 |
按钮样式使用 class="ui-btn",使用 "ui-btn-a|b" 类设置按钮为灰色(默认)或黑色:
<a href="#" class="ui-btn ui-btn-a|b">按钮</a>
"a" 主题的样式用于大多数元素,子元素通常继承父元素的样式。 |
主题头部和底部
实例
<div data-role="header" data-theme="b"></div>
<div data-role="footer" data-theme="b"></div>
<div data-role="footer" data-theme="b"></div>
尝试一下 »
主题对话框的头部底部
实例
<div data-role="page" data-dialog="true" id="pagetwo">
<div data-role="header" data-theme="b"></div>
<div data-role="footer" data-theme="b"></div>
</div>
<div data-role="header" data-theme="b"></div>
<div data-role="footer" data-theme="b"></div>
</div>
尝试一下 »
主题按钮
主题图标
主题弹窗
头部和底部的主题按钮
实例
<div data-role="header">
<a href="#" class="ui-btn ui-btn-b">主页</a>
<h1>欢迎访问我的主页</h1>
<a href="#" class="ui-btn">搜索</a>
</div>
<div data-role="footer">
<a href="#" class="ui-btn ui-btn-b">在Facebook上关注我</a>
<a href="#" class="ui-btn">在Twitter上关注我</a>
<a href="#" class="ui-btn ui-btn-b">在Instagram上关注我</a>
</div>
<a href="#" class="ui-btn ui-btn-b">主页</a>
<h1>欢迎访问我的主页</h1>
<a href="#" class="ui-btn">搜索</a>
</div>
<div data-role="footer">
<a href="#" class="ui-btn ui-btn-b">在Facebook上关注我</a>
<a href="#" class="ui-btn">在Twitter上关注我</a>
<a href="#" class="ui-btn ui-btn-b">在Instagram上关注我</a>
</div>
尝试一下 »
主题导航栏
实例
<div data-role="footer" data-theme="b">
<h1>文本头部</h1>
<div data-role="navbar">
<ul>
<li><a href="#" data-icon="home" data-theme="a">Button 1</a></li>
<li><a href="#" data-icon="arrow-r">Button 2</a></li>
<li><a href="#" data-icon="arrow-r">Button 3</a></li>
<li><a href="#" data-icon="search" data-theme="a">Button 4</a></li>
</ul>
</div>
</div>
<h1>文本头部</h1>
<div data-role="navbar">
<ul>
<li><a href="#" data-icon="home" data-theme="a">Button 1</a></li>
<li><a href="#" data-icon="arrow-r">Button 2</a></li>
<li><a href="#" data-icon="arrow-r">Button 3</a></li>
<li><a href="#" data-icon="search" data-theme="a">Button 4</a></li>
</ul>
</div>
</div>
尝试一下 »
主题面板
主题可折叠按钮和内容
实例
<div data-role="collapsible" data-theme="b" data-content-theme="b">
<h1>Click me - I‘m collapsible!</h1>
<p>I‘m the expanded content.</p>
</div>
<h1>Click me - I‘m collapsible!</h1>
<p>I‘m the expanded content.</p>
</div>
尝试一下 »
主题列表
实例
<ul data-role="listview" data-theme="b">
<li><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
<li data-theme="a"><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
</ul>
<li><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
<li data-theme="a"><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
</ul>
尝试一下 »
主题分割按钮
主题可折叠列表
实例
<div data-role="collapsible" data-theme="b" data-content-theme="b">
<ul data-role="listview">
<li><a href="#">Agnes</a></li>
</ul>
</div>
<ul data-role="listview">
<li><a href="#">Agnes</a></li>
</ul>
</div>
尝试一下 »
主题表单
实例
<label for="name">Full Name:</label>
<input type="text" name="text" id="name" data-theme="b">
<label for="colors">Choose Favorite Color:</label>
<select id="colors" name="colors" data-theme="b">
<option value="red">Red</option>
<option value="green">Green</option>
<option value="blue">Blue</option>
</select>
<input type="text" name="text" id="name" data-theme="b">
<label for="colors">Choose Favorite Color:</label>
<select id="colors" name="colors" data-theme="b">
<option value="red">Red</option>
<option value="green">Green</option>
<option value="blue">Blue</option>
</select>
尝试一下 »
主题可折叠表单
实例
<fieldset data-role="collapsible" data-theme="b" data-content-theme="b">
<legend>Click me - I‘m collapsible!</legend>
<legend>Click me - I‘m collapsible!</legend>
尝试一下 »
添加新主题
jQuery Mobile 可以在移动页面添加新主题。
通过修改 CSS 文件来添加或编辑新主题(如果你已经下载了 jQuery Mobile)。你只需要拷贝样式模块,然后重命令字母类名(c-z),并在样式中添加你喜欢的颜色和字体。
你也可以在 html 文档中添加主题的新样式, 工具条添加类: ui-bar-(a-z) ,文本内容添加类: ui-body-(a-z) ,页面添加类:ui-page-theme-(a-z) 。
实例
<style>
.ui-bar-f {
color: red;
background-color: yellow;
}
.ui-body-f {
font-weight: bold;
color: white;
background-color: purple;
}
.ui-page-theme-f {
font-weight: bold;
background-color: green;
}
</style>
.ui-bar-f {
color: red;
background-color: yellow;
}
.ui-body-f {
font-weight: bold;
color: white;
background-color: purple;
}
.ui-page-theme-f {
font-weight: bold;
background-color: green;
}
</style>
尝试一下 »
在之前的 jQuery Mobile 版本中, 使用 javascript 来为元素继承父主题样式。到了 1.4 版本后,框架更注重性能上的提升,已不再使用 JavaScript 来继承,而是使用纯 CSS。 jQuery Mobile 团队为此已经创建了一个工具,地址为 ThemeRoller。你可以使用该工具来升级旧的主题,使其兼容新的版本。 |
以上就是 jQuery Mobile 主题 的详细内容,更多请关注runoob其它相关文章!
【美亚麟喜代孕机构】「10年诚信品牌机构」「微信:130-2233-7922」「三甲医院合作」「三代试管婴儿技术」「代孕成功率高」「代孕价格费用合理」美亚麟喜·您圆梦路上的首选伙伴!
重庆代孕【徽信13022337922】、成都代孕【徽信13022337922】、长沙代孕【徽信13022337922】、
武汉代孕【徽信13022337922】、贵阳代孕【徽信13022337922】、昆明代孕【徽信13022337922】、
重庆代孕【徽信13022337922】、重庆代孕【徽信13022337922】、重庆代孕【徽信13022337922】、
重庆代孕【徽信13022337922】、
以上是关于jQuery Mobile 主题的主要内容,如果未能解决你的问题,请参考以下文章
JQuery Mobile 1.4.5 - 被主题 css 覆盖的 ui-mini