0

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

<div  data-role="header">

    <h1>Add Images</h1>

</div>

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

4

1 回答 1

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>   
于 2013-07-04T11:00:52.263 回答