我正在尝试像这样实现this(click me)
。在页面按钮上,您会发现 4 张图像,在鼠标悬停时,它们会显示信息。我正在寻找同样的东西。下面是我的代码,但它不像上面给出的网站那样工作。
<html>
<head>
<link href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<script>
$(document).ready(function(){
$("#d2").hover(function()
{
$("#d3").show();
});
$("#maindiv").mouseout(function()
{
$("#d1").show();
$("#d3").hide();
});
});
</script>
</head>
<body>
<div id="d2" > <img width="160px" src="http://www.infosys.com/SiteCollectionImages/cloud-ecosystem-hub-mm.jpg" title=" Image of Tic tac toe small image" /></div>
<div id="maindiv">
<div id="d3" style="display: none;">
<table width="80px" height="26px" border="1">
<tr>
<td width="200px"> Information/description about tic tac toe in small para. blah blah blah </td>
</tr>
</table>
</div>
</div>
</body>
</html>
请帮我解决这个问题。
我的问题。Div 没有以良好的动画风格隐藏。在显示 div(div name= d3) 的同时。我的页面应该很少向下滚动。当鼠标离开我的 div(div name=maindiv)时。我实现与上面给出的 链接相同。