jQuery Mobile 主题

jQuery Mobile 主题

jQuery Mobile 提供了五种不同的样式主题,从 "a" 到 "e" - 每种主题带有不同颜色的按钮、栏、内容块,等等。

jQuery Mobile 中的一种主题由多种可见的效果和颜色构成。

如需定制应用程序的外观,请使用 data-theme 属性,并为该属性分配一个字母:

  1. <div data-role="page" data-theme="a|b|c|d|e">
描述例子
a默认。黑色背景上的白色文本。测试
b蓝色背景上的白色文本 / 灰色背景上的黑色文本测试
c亮灰色背景上的黑色文本测试
d白色背景上的黑色文本测试
e橙色背景上的黑色文本测试

提示:混合您喜欢的主题!默认地,jQuery Mobile 为页眉和页脚使用 "a" 主题,为页眉内容使用 "c" 主题(亮灰)。不过,您能够自如地对主题进行混合。


主题化的页面、内容和页脚

实例
  1. <div data-role="header" data-theme="b"></div>
  2. <div data-role="content" data-theme="a"></div>
  3. <div data-role="footer" data-theme="e"></div>

主题化的对话框

实例
  1. <a href="#pagetwo" data-rel="dialog">Go To The Themed Dialog Page</a>
  2. <div data-role="page" id="pagetwo" data-overlay-theme="e">
  3. <div data-role="header" data-theme="b"></div>
  4. <div data-role="content" data-theme="a"></div>
  5. <div data-role="footer" data-theme="c"></div>
  6. </div>

主题化的按钮

实例
  1. <a href="#" data-role="button" data-theme="a">Button</a>
  2. <a href="#" data-role="button" data-theme="b">Button</a>
  3. <a href="#" data-role="button" data-theme="c">Button</a>

主题化的图标

实例
  1. <a href="#" data-role="button" data-icon="plus" data-theme="e">Plus</a>

页眉和页脚中的主题化按钮

实例
  1. <div data-role="header">
  2. <a href="#" data-role="button" data-icon="home" data-theme="b">Home</a>
  3. <h1>Welcome To My Homepage</h1>
  4. <a href="#" data-role="button" data-icon="search" data-theme="e">Search</a>
  5. </div>
  6. <div data-role="footer">
  7. <a href="#" data-role="button" data-theme="b" data-icon="plus">Button 1</a>
  8. <a href="#" data-role="button" data-theme="c" data-icon="plus">Button 2</a>
  9. <a href="#" data-role="button" data-theme="e" data-icon="plus">Button 3</a>
  10. </div>

主题化的导航栏

实例
  1. <div data-role="footer" data-theme="e">
  2. <h1>Insert Footer Text Here</h1>
  3. <div data-role="navbar">
  4. <ul>
  5. <li><a href="#" data-icon="home" data-theme="b">Button 1</a></li>
  6. <li><a href="#" data-icon="arrow-r">Button 2</a></li>
  7. <li><a href="#" data-icon="arrow-r">Button 3</a></li>
  8. <li><a href="#" data-icon="search" data-theme="a" >Button 4</a></li>
  9. </ul>
  10. </div>
  11. </div>

主题化的可折叠按钮和内容

实例
  1. <div data-role="collapsible" data-theme="b" data-content-theme="e">
  2. <h1>Click me - I'm collapsible!</h1>
  3. <p>I'm the expanded content.</p>
  4. </div>

主题化列表

实例
  1. <ul data-role="listview" data-theme="e">
  2. <li><a href="#">List Item</a></li>
  3. <li data-theme="a"><a href="#">List Item</a></li>
  4. <li data-theme="b"><a href="#">List Item</a></li>
  5. <li><a href="#">List Item</a></li>
  6. </ul>

主题化划分按钮

实例
  1. <ul data-role="listview" data-split-theme="e">

主题化的可折叠列表

实例
  1. <div data-role="collapsible" data-theme="b" data-content-theme="e">
  2. <ul data-role="listview">
  3. <li><a href="#">Agnes</a></li>
  4. </ul>
  5. </div>

主题化表单

实例
  1. <label for="name">Full Name:</label>
  2. <input type="text" name="text" id="name" data-theme="a">
  3. <label for="colors">Choose Favorite Color:</label>
  4. <select id="colors" name="colors" data-theme="b">
  5. <option value="red">Red</option>
  6. <option value="green">Green</option>
  7. <option value="blue">Blue</option>
  8. </select>

主题化的可折叠表单

实例
  1. <fieldset data-role="collapsible" data-theme="b" data-content-theme="e">
  2. <legend>Click me - I'm collapsible!</legend>

添加新主题

jQuery Mobile 同时支持您向移动页面添加新主题。

请通过编辑 CSS 文件(如已下载 jQuery Mobile)来添加或编辑新主题。只需拷贝一段样式,并用字母名(f-z)来对类进行重命名,然后调整为您喜欢的颜色和字体即可。

您也可以通过在 HTML 文档中使用主题类来添加新样式 - 为工具条添加类 ui-bar-(a-z),并为内容添加类 ui-body-(a-z)

实例
  1. <style>
  2. .ui-bar-f
  3. {
  4. color:green;
  5. background-color:yellow;
  6. }
  7. .ui-body-f
  8. {
  9. font-weight:bold;
  10. color:purple;
  11. }
  12. </style>