0

我正在尝试为基于 Jquery mobile 的移动应用程序创建某种在页面边缘运行的细条。其目的是提醒人们注意他们可以拉出的侧面板的存在。我附上了图片以更好地解释我的观点

在此处输入图像描述

由于 jQM 使用页面内容页脚系统,我不清楚如何做到这一点。我听说过使用内容辅助创建一个侧边栏,但这似乎过头了,我听说它在手机上的行为与平板电脑不同。

4

1 回答 1

2

介绍

几个月前我做了类似的东西,唯一的区别是我的拉按钮没有将高度设置为 100%。

此解决方案已在以下位置进行测试:

  • 桌面铬
  • 桌面火狐
  • 移动安卓 Chrome

您唯一需要更改的是按钮高度。

工作示例

jsFiddle 示例可以在这里找到:http: //jsfiddle.net/Gajotres/qgDst/

代码

HTML

<!DOCTYPE html>
<html>
    <head>
        <title>jQM Complex Demo</title>
        <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
        <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>    
    </head>
    <body>
        <div data-role="page" id="index">
            <div data-theme="b" data-role="header">              
                <h1>Index page</h1>
            </div>

            <div data-role="content">

            </div>

            <div data-role="panel" id="left-panel" data-display="overlay" data-position="left" data-theme="c">
                <img src="small_image_as_button" /><!-- click here to open the panel -->
                <nav id="indice">
                    <!-- content here -->
                </nav>
                <div data-role="button" id="tick-button">>></a>                
            </div>            
        </div>    
    </body>
</html>  

Javascript

$(document).on('pagebeforeshow', '#index', function(){ 
    $(document).on('click tap', '#tick-button', function(){ 
        $("#left-panel").panel( "open");       
    });      
});

CSS:

.ui-panel-closed {
    visibility: visible !important;  
    width: 100px !important; 
    left: 160px !important;
    overflow: visible !important;
}

.ui-content {
    padding: 0 15px 15px 15px !important;
}

#tick-button {
    position: absolute;
    top: 100px;
    right: -27px;    
    width: 25px;
    height: 100px;
    margin: 0 0 !important;
    border-radius: 0 1em 1em 0;
}

#tick-button .ui-btn-inner {
    padding: 0 0 !important;
    height: 100% !important;
    font:10px 'Courier New', 'Verdana',serif;     
    line-height: 100px;
    color: #555;
    text-shadow: 1px 1px #fff;   
}
于 2013-07-23T11:07:41.053 回答