gpt4 book ai didi

javascript - 悬停时放大图像但不放大容器

转载 作者:行者123 更新时间:2023-11-28 13:46:39 26 4
gpt4 key购买 nike

我正在尝试寻找一种方法,当图像悬停时不放大表格。这是我的代码。谢谢

<script language="javascript" type="text/javascript">
//opacity: 0.5,
$(document).ready(function () {
$("#thServer img").hover(function () {
$(this).stop().animate({ width: 70, height: 70 }, 100);
}, function () {
$(this).stop().animate({ width: 50, height: 50 }, 100);
});
});

</script>

<table style="border-style: solid">
<tr>
<th id="thServer">
<img src="NewVersion.png" width="50" height="50"></img>
</th>
</tr>
<tr>
<td>
</td>
</tr>
</table>

最佳答案

试试这个 css snippet :

#thServer {
width: 50px;
height: 50px;
position: relative;
}

#thServer img {
position: absolute;
top: 0;
left: 0;
margin: 0;
}

关于javascript - 悬停时放大图像但不放大容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11815377/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com