gpt4 book ai didi

javascript - 将鼠标悬停在图像的一部分上时的工具提示

转载 作者:太空宇宙 更新时间:2023-11-03 21:36:58 26 4
gpt4 key购买 nike

我在 html/php 页面上有一张大图片,我想知道如何指定图片的某些部分以在悬停时显示不同的工具提示。

编辑:我在另一篇文章中找到了这段代码,如何让它显示工具提示而不是警报?我如何指定超过 1 个悬停区域?

<html>
<head>
<script language="JavaScript">
function getDetails(obj){
clickX = window.event.x-obj.offsetLeft;
clickY = window.event.y-obj.offsetTop;
if((clickX>=100&&clickX<=200)&&(clickY>=100&&clickY<=200))
{
alert(" You are between (100,100) And (200,200) of the Image");
}
}
</script>
</head>
<body>
<img src="image.jpg" onMousemove="getDetails(this)" id="myimg" height="500" width="500" />
</body>
</html>

抱歉,我还在学习这个网站的运作方式。提前致谢!

最佳答案

使用 HTML map 标签,然后为每个区域定义一个标题。

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">

<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" title="Sun">
<area shape="circle" coords="90,58,3" href="mercur.htm" title="Mercury">
<area shape="circle" coords="124,58,8" href="venus.htm" title="Venus">
</map>

关于javascript - 将鼠标悬停在图像的一部分上时的工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25899350/

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