我正在尝试创建一个简单的图像链接按钮,当我在其上移动鼠标时,它会变得更大。 我设法用下面这个简单的代码来做,但现在我只想在图像越来越大时移动段落。
当我将鼠标悬停在图像上时,如何选择和移动段落的任何提示都会提示?
<div id="rightImage">
<a href="http://blabla.com" target="_blank"> <img src="images/image.jpg" alt="image" onmouseover="this.className='mouseOver'" onmouseout="this.className='mouseOut'" /></a>
<p>paragraph</p>
</div>
#rightImage
{
width:275px;
height:275px;
float:left;
position:relative;
}
.mouseOver
{
width:300px;
height:300px;
top:-40px;
z-index:1;
position:absolute;
box-shadow:2px -2px 10px 3px #888, inset 2px -2px 10px 3px #888;
}
.mouseOut
{
width:275px;
height:275px;
float:left;
margin-right:52px;
box-shadow:2px -2px 10px 3px #888, inset 2px -2px 10px 3px #888;
}
答案 0 :(得分:3)
这会放大图像,增加阴影的大小并保持&lt; p&gt;元素可见。
(编辑:我忘了对p周围的斜角括号进行编码)
也许这就是你需要的东西?
<!DOCTYPE html>
<html>
<head>
<script>
</script>
<style>
#rightImage
{
height:275px;
float:left;
position:relative;
box-shadow:2px -2px 10px 3px #888, inset 2px -2px 10px 3px #888;
}
#rightImage:hover img
{
height: 300px;
box-shadow:4px -4px 10px 3px #888, inset 4px -4px 10px 3px #888;
}
</style>
</head>
<body>
<div id="rightImage">
<a href="http://blabla.com" target="_blank"> <img src="img/redBaron.jpg" alt="image"/></a>
<p>paragraph</p>
</div>
</body>
</html>
答案 1 :(得分:2)
删除position:absolute
.mouseOver
{
width:300px;
height:300px;
z-index:1;
box-shadow:2px -2px 10px 3px #888, inset 2px -2px 10px 3px #888;
}
答案 2 :(得分:2)
试试这个。我希望它适合你。
<div id="rightImage">
<a href="http://blabla.com" target="_blank"> <img src="images/image.jpg" alt="image" width="275px" height="275" /></a>
<p>paragraph</p>
</div>
使用此css
#rightImage{
width:275px;
height:275px;
float:left;
position:relative;}
#rightImage:hover{
width:300px;
height:300px;
top:-40px
z-index:1;
position:absolute;
box-shadow:2px -2px 10px 3px #888, inset 2px -2px 10px 3px #888;}
#rightImage:hover p {
position:relative;
margin-top:30px;}