当鼠标悬停在其他 div 上时更改中心 div 的鼠标悬停效果

发布于 2024-11-02 12:05:33 字数 197 浏览 0 评论 0原文

我想制作一个带有 div 的页面,其中图像位于直接中心,当用户将鼠标悬停在其他 div(整个内容,而不仅仅是链接)上时,我希望更改图像。

是否需要使用 javascript 来实现此目的?最简单的解决方案是什么(鼠标悬停时?)。我不太了解 JavaScript。有没有关于这方面的好的教程,我用谷歌搜索但找不到有关 div 交换的任何内容。

谢谢!

I'd like to make a page with a div with an image in the direct center, and when the user mouseover other divs (the whole thing, not just links) I'd like to have the image change.

Is it required to use javascript for this? What's the simiplest solution (onmouseover?). I don't know javascript very well. Is there a good tutorial on this, I googled but had trouble finding anything about div swapping.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

惜醉颜 2024-11-09 12:05:33

您可以为此使用 jquery 函数...请参阅此处
鼠标悬停鼠标移开

You can use jquery functions for this...Refer here
mouseover and mouseout

失与倦" 2024-11-09 12:05:33

我在这里包含了一些示例源代码......

在这里您必须替换相对于本地系统的图像名称和位置()。

<html>
<head>
<title>Detecting browser close in IE</title>
<script type="text/javascript">
function changeImg()
{
document.getElementById("image").src="new image location here";
}

</script>
</head>
</script>
</head>
<body >
<div align="center">
<img src="imagelocation here" alt="myclass" id="image" />
</div>
<div id="div2" align="left" onmouseover="changeImg()">
Drag Ur mouse to  change image
</div>

</body>
</html>

我希望这对你有帮助。

I have Included some sample source code here....

here u have to replace image name and locations () as relative to Ur local system.

<html>
<head>
<title>Detecting browser close in IE</title>
<script type="text/javascript">
function changeImg()
{
document.getElementById("image").src="new image location here";
}

</script>
</head>
</script>
</head>
<body >
<div align="center">
<img src="imagelocation here" alt="myclass" id="image" />
</div>
<div id="div2" align="left" onmouseover="changeImg()">
Drag Ur mouse to  change image
</div>

</body>
</html>

I hope This will help U.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文