0

我正在尝试将 jQuery Mobile 用于桌面。我正在构建一个社交网络服务,我想为每个组和消息使用使用一个左右面板。

我想要的是当我将鼠标悬停在其相应的标题栏按钮上时出现的侧面板,例如 Google+ 中的侧边栏。

这是我的代码:

jsFiddle

<!DOCTYPE html> 
<html> 
<head> 
    <title>My Page</title> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
    <!--jqm cdn-->
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head> 
<body> 

<div data-role="page">
<!--groups panel-->
<div data-role="panel" id="groups-panel" data-position="left" data-display="overlay">
LPS
</div>
<!--friends panel-->
<div data-role="panel" id="friends-panel" data-position="right" data-display="overlay">
LPS
</div>

    <div data-role="header" data-theme="b">
        <a href="#groups-panel" id="groups-button" data-icon="arrow-r" data-iconpos="notext">Groups</a>
        <h1>My Title</h1>
        <a href="#friends-panel" id="friends-button" data-icon="arrow-l" data-iconpos="notext">Friends</a>
    </div><!-- /header -->

    <div data-role="content">   

    </div><!-- /content -->

</div><!-- /page -->

</body>
</html>

我怎样才能做到这一点?任何帮助表示赞赏。

4

1 回答 1

3

将此代码添加到您的页面

$('#groups-panel').mouseleave(function () {
    $(this).panel("close");
});

$("#groups-button").hover(function () {
    $('#groups-panel').panel("open");
});

$('#friends-panel').mouseleave(function () {
    $(this).panel("close");
});

$("#friends-button").hover(function () {
    $('#groups-panel').panel("open");
});

小提琴

于 2013-09-15T08:45:32.643 回答