我正在尝试将 jQuery Mobile 用于桌面。我正在构建一个社交网络服务,我想为每个组和消息使用使用一个左右面板。
我想要的是当我将鼠标悬停在其相应的标题栏按钮上时出现的侧面板,例如 Google+ 中的侧边栏。
这是我的代码:
<!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>
我怎样才能做到这一点?任何帮助表示赞赏。