码迷,mamicode.com
首页 > Web开发 > 详细

jquerymobile菜单事例

时间:2015-01-02 09:43:48      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:jquerymobile菜单事例   mobile自定义开发   html5开发   mobile菜单事例   

<!DOCTYPE html>
<html>
    <head>
        <title>三国</title>
        <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0" /> 
        <script type="text/javascript" src="
http://code.jquery.com/jquery-1.5.min.js"></script>
        <link rel="stylesheet" href="
http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />
        <script type="text/javascript" src="
http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"></script>
    </head>
    <body>
        <div data-role="page" id="homepage" data-position="fixed">
            <div data-role="header">
                <h1>三国</h1>
            </div>
            <div data-role="content">
                <h4>三国时代</h4>
            </div>
            <div data-role="footer" data-position="fixed">
               <nav data-role="navbar">
                   <ul>
                      <li><a data-role="button" data-icon="forward" data-theme="a" href="#page_liu">蜀国</a></li>
                      <li><a data-role="button" data-icon="forward" data-theme="a" href="#page_wu">吴国</a></li>
                      <li><a data-role="button" data-icon="forward" data-theme="a" href="#page_cao">魏国</a></li>
                   </ul>
               </nav>
            </div>
         </div>
         <div data-role="page" id="page_liu" data-position="fixed">
            <div data-role="header">
                <h1>蜀国</h1>
                <a data-role="button" data-icon="back" data-theme="a" href="#homepage">返回</a>
            </div>
            <div data-role="content">
                刘备,关羽,张飞
            </div>
            <div data-role="footer" data-position="fixed">
                <h4>刘备的天下</h4>
            </div>
         </div>
         <div data-role="page" id="page_wu" data-position="fixed">
            <div data-role="header">
                <h1>吴国</h1>
                <a data-role="button" data-icon="back" data-theme="a" href="#homepage">返回</a>
            </div>
            <div data-role="content">
              孙权,周瑜,黄盖
            </div>
            <div data-role="footer" data-position="fixed">
                <h4>孙权的天下</h4>
            </div>
         </div>
         <div data-role="page" id="page_cao" data-position="fixed">
            <div data-role="header">
                <h1>魏国</h1>
                <a data-role="button" data-icon="back" data-theme="a" href="#homepage">返回</a>
            </div>
            <div data-role="content">
                曹操,曹仁,曹丕
            </div>
            <div data-role="footer" data-position="fixed">
                <h4>曹操的天下</h4>
            </div>
         </div>
     </body>
</html>

效果:

技术分享

 


jquerymobile菜单事例

标签:jquerymobile菜单事例   mobile自定义开发   html5开发   mobile菜单事例   

原文地址:http://blog.csdn.net/y_f123/article/details/42339561

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!