zoukankan      html  css  js  c++  java
  • [ Talk is Cheap Show me the CODE ] : jQuery Mobile工具栏

    [ Talk is Cheap Show me the CODE ] : jQuery Mobile工具栏

    Written In The Font

    “ Wirte less Do more”

    学习内容:

     

    页眉工具栏和页眉button

    页眉是网页身体的头不一样.以下我们演示下在页面工具栏中加入两个连接,中间一个标题.

                                                                                           image

     

    show the code:

    复制代码
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title>測试</title>
        
        <meta name="viewport" content="width=device-width, initial-scale=1">
        
        <link rel="stylesheet"  href="css/jquery.mobile-1.3.2.css">
        
        <script src="js/jquery.js"></script>
        <script src="js/jquery.mobile-1.3.2.js"></script>
        
    </head>
    <body>
        
        <div data-role="page" id="subone">
            <div data-role="header" data-position="inline">    
                <a href="#">返回</a>
                <h1> 主界面 </h1>
                <a href="#">很多其它</a>
            </div>
        </div>      
        
    </body>
    </html>
    复制代码

     

    导航工具栏

    导航工具栏是 jQuery Mobile 的小部件.像tab页,像navbar一样.以下演示下,音乐的一个网页的案例:

                                                                                             image

     

    show the code:

    复制代码
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title>Jeff Li</title>
        
        <meta name="viewport" content="width=device-width, initial-scale=1">
        
        <link rel="stylesheet"  href="css/jquery.mobile-1.3.2.css">
        
        <script src="js/jquery.js"></script>
        <script src="js/jquery.mobile-1.3.2.js"></script>
        
    </head>
    <body>
        
        <div data-role="page" id="subone">
            <div data-role="header" data-position="inline">    
                <a href="#">返回</a>
                <h1>音乐 </h1>
                <a href="#">很多其它</a>
                <div data-role="navbar" >
                    <ul>
                        <li><a href="#">古典</a></li>
                        <li><a href="#">流行</a></li>
                        <li><a href="#">摇滚</a></li>
                    </ul>
                </div>
            </div>
            
            <div data-role="content">  
                <h3>I am a single collapsible element </h3>
                <p>I am the content inside of the single collapsible element</p>
            </div>
        
          
        </div>      
    </body>
    </html>
    复制代码

     

    页脚工具栏

    页脚工具栏,以下实现button并排显示,两端button边角变为圆角:

    (左图不是圆角,右图是圆角.代码就是相差个div)

                                                        image                           image

    show the code:

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title>Jeff Li</title>
        
        <meta name="viewport" content="width=device-width, initial-scale=1">
        
        <link rel="stylesheet"  href="css/jquery.mobile-1.3.2.css">
        
        <script src="js/jquery.js"></script>
        <script src="js/jquery.mobile-1.3.2.js"></script>
        
    </head>
    <body>
        
        <div data-role="page" id="subone">
            <div data-role="header" data-position="inline">    
                <a href="#">返回</a>
                <h1>音乐 </h1>
                <a href="#">很多其它</a>
                <div data-role="navbar" >
                    <ul>
                        <li><a href="#">古典</a></li>
                        <li><a href="#">流行</a></li>
                        <li><a href="#">摇滚</a></li>
                    </ul>
                </div>
            </div>
            
            <div data-role="content">  
                <h3>I am a single collapsible element </h3>
                <p>I am the content inside of the single collapsible element</p>
            </div>
        
            <div data-role="footer" class="ui-bar" data-position="fixed">
               <div data-role="controlgroup" data-type="horizontal">
                    <a href="#" data-role="button">千千静听</a>
                    <a href="#" data-role="button">QQ音乐</a>
                    <a href="#" data-role="button">酷我音乐</a>
               </div>
            </div>  
        </div>      
    </body>
    </html>



     

    定位工具栏

    定位工具栏,上面我们都用过了.定位工具栏是否已经在可视化范围内.要是工具栏使用固定位子,我们仅仅须要将该属性加入进去:

    data-position="fixed".

    也能够在page div中使用全屏定位.我们仅仅须要 <div data-role=”page” data-fullscreen=”true”>

     

    Editor's Note

    路漫漫其修远兮 我将上下而求索

    版权声明:本文博客原创文章,博客,未经同意,不得转载。

  • 相关阅读:
    互联网流媒体直播点播平台报ioutil.WriteFile错误导致文件只读如何处理?
    互联网直播点播平台go语言搭建重定向和反向代理的区别及使用
    互联网视频直播点播平台EasyDSS如何集成流媒体平台调取登录及上传接口?
    互联网直播点播平台如何联合RTMP推流摄像头构建智慧消防方案?
    RTMP推流网关如何实现摄像头微信幼儿园直播?
    国标GB28181流媒体服务器gorm框架内表明重复添加前缀排查
    国标GB28181流媒体平台EasyGBS新版界面视频流更新时间显示错误问题解决
    视频流媒体播放器EasyPlayer-RTSP-Android 如何随意切换播放视频流?
    国标GB28181流媒体服务器分辨率会导致视频无法播放吗?
    国标GB28181流媒体平台集成后播放多个视频部分视频无法播放问题
  • 原文地址:https://www.cnblogs.com/yxwkf/p/4622242.html
Copyright © 2011-2022 走看看