当用户点击页面中的任何位置时如何显示和隐藏标题?

时间:2013-07-04 10:51:46

标签: jquery-mobile

请告诉我当用户点击页面中的任何位置时如何显示和隐藏标题? 我想我需要使用切换类和('。header')。show('慢'); 或隐藏.i不知道如何使用它? http://jsfiddle.net/ravi1989/YcxtS/

<div  data-role="header">

    <h1>Add Images</h1>

</div>

这是基础标题。但是我需要实现具有多个水平滚动图像的标题。 如何在jquery mobile中水平滚动图片?

1 个答案:

答案 0 :(得分:1)

只需将这些属性添加到标题中: data-position="fixed" data-fullscreen="true"

工作示例:http://jsfiddle.net/uTpH4/

<强> HTML:

<!DOCTYPE html>
<html>
    <head>
        <title>jQM Complex Demo</title>
        <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
        <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/jquery-1.9.1.min.js"></script>-->
        <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" data-position="fixed" data-fullscreen="true">
                <h1>Index page</h1>
                <a href="#second" class="ui-btn-right" data-icon="edit">Next</a>
            </div>

            <div data-role="content">

            </div>
        </div>    
    </body>
</html>