123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>BOSSHAND</title>
- <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <link rel="stylesheet" href="css/common/mui.min.css">
- <link rel="stylesheet" type="text/css" href="css/common/icons-extra.css" />
- <link rel="stylesheet" type="text/css" href="css/common/common.css" />
- <style type="text/css">
- .mui-bar-tab .mui-tab-item .mui-icon~.mui-tab-label {
- font-size: 10px;
- }
-
- .mui-bar-tab .mui-tab-item {
- height: 49px;
- }
-
- .mui-bar-tab .mui-tab-item .mui-icon {
- top: 7px;
- width: 20px;
- height: 20px;
- }
-
- .mui-active>.show {
- background: url(img/index/home@2x.png) no-repeat;
- background-size: contain;
- }
-
- .mui-active>.chat {
- background: url(img/index/chat-chat@2x.png) no-repeat;
- background-size: contain;
- }
-
- .mui-active>.app {
- background: url(img/index/app-color@2x.png) no-repeat;
- background-size: contain;
- }
-
- .mui-active>.me {
- background: url(img/index/me-color@2x.png) no-repeat;
- background-size: contain;
- }
-
- .show {
- background: url(img/index/home_gray@2x.png) no-repeat;
- background-size: contain;
- }
-
- .chat {
- background: url(img/index/chat@2x.png) no-repeat;
- background-size: contain;
- }
-
- .app {
- background: url(img/index/app@2x.png) no-repeat;
- background-size: contain;
- }
-
- .me {
- background: url(img/index/me-@2x.png) no-repeat;
- background-size: contain;
- }
-
- .title-img {
- display: inline-block;
- position: relative;
- width: 34px;
- height: 34px;
- top: 6px;
- left: 3px;
- border-radius: 50%;
- background: -webkit-radial-gradient(circle, #ffffff, #1badf8);
- /* Safari 5.1 - 6.0 */
- background: -o-radial-gradient(circle, #ffffff, #1badf8);
- /* Opera 11.1 - 12.0 */
- background: -moz-radial-gradient(circle, #ffffff, #1badf8);
- /* Firefox 3.6 - 15 */
- background: radial-gradient(circle, #ffffff, #1badf8);
- /* 标准的语法 */
- }
-
- .title-img img {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- border: 3px solid transparent;
- box-sizing: border-box;
- /*display: none;*/
- }
-
- #tabbar {
- width: 100%;
- text-align: center;
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: 10000;
- background: #ffffff;
- border-top: 1px solid #d7d7d7;
- }
-
- #tabbar button,
- #tabbar input {
- margin: 8px 0;
- }
-
- #tabbar input {
- width: 76%;
- height: 34px;
- font-size: 14px;
- margin-right: 5px;
- /*border: none;
- border-bottom: 1px solid #1BADF8;*/
- border-radius: 4px;
- border: 1px solid #eee;
- line-height: 23px;
- }
-
- #tabbar button {
- height: 34px;
- color: #999999;
- margin-left: 5px;
- border: 1px solid #eee;
- line-height: 23px;
- }
- </style>
- </head>
- <body>
- <header id="header" class="mui-bar mui-bar-nav">
- <span class="title-img" id="tpl/my/my-set.html" onclick="hrefTo(this.id)">
- </span>
- <h1 id="title" class="mui-title">BOSSHAND</h1>
- </header>
- <nav id="tabbar" class="mui-bar mui-bar-tab">
- <a id="defaultTab" class="mui-tab-item mui-active" href="home-index.html">
- <span class="mui-icon show"></span>
- <span class="mui-tab-label">工作</span>
- </a>
- <a class="mui-tab-item chats" href="communicate.html">
- <span class="mui-icon chat">
- <!--有新消息时显示,添加数字-->
- <!--<span class="mui-badge">9</span>-->
- </span>
- <span class="mui-tab-label">社交</span>
- </a>
- <a class="mui-tab-item" href="appliance.html">
- <span class="mui-icon app"></span>
- <span class="mui-tab-label">资讯</span>
- </a>
- <a class="mui-tab-item" href="my.html">
- <span class="mui-icon me"></span>
- <span class="mui-tab-label">我的</span>
- </a>
- </nav>
- <script src="libs/mui.min.js"></script>
- <script src="libs/href.js" type="text/javascript" charset="utf-8"></script>
- <script src="app/index-js/index-tabs.js" type="text/javascript" charset="utf-8"></script>
- </body>
- </html>
|