HTML 标记中的区域蓝色轮廓?

Area Blue outlining in HTML markup?

我正在查看 HTML 个热点,并且对我在之前的 Stack Overflow 问答中找到的示例有疑问。

Previous Stack OverFlow Area Example

在 'Gibberish' 的第一个回答中,他提供了一个关于 JSFiddle 的有效示例。 JSFiddle Example from Gibberish

function hovIn() {
  var areaID = $(this).attr('id');
  //alert('['+areaID+']');
  if (areaID == 'CUST_1') {
    $('#myDiv').show();
  }
}

function hovOut() {
  $('#myDiv').hide();
}

$('map area').hover(hovIn, hovOut);
#num_cust1 {
  padding: 10px;
  background-color: yellow;
  position: absolute;
  top: 60px;
  left: 180px;
}

#num_cust2 {
  padding: 10px;
  background-color: yellow;
  position: absolute;
  top: 60px;
  left: 40px;
}

#num_cust3 {
  padding: 10px;
  background-color: yellow;
  position: absolute;
  top: 160px;
  left: 180px;
}

#myDiv {
  display: none;
  width: 50%;
  height: 50px;
  padding: 10px;
  background-color: skyblue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Instructions: Mouse over computer's monitor to see hidden DIV
<!--<img src="http://www.proprofs.com/quiz-school/upload/yuiupload/2014513384.jpg" width="400" height="400" />-->
<div id="imagemap">
  <img src="http://img716.imageshack.us/img716/8287/3ylp.jpg" width="275" height="207" usemap="#Map" border="0" />
  <map name="Map">
        <area shape="poly" coords="105,26,107,126,257,140,256,27" href="#" id="CUST_1" name="CUST:1" />
        <area shape="poly" coords="10,21,14,178,71,184,69,19" href="#" id="CUST_2" name="CUST:2" />
        <area shape="poly" coords="113,145,94,172,241,192,251,164,250,164" href="#" id="CUST_3" name="CUST:3" />
    </map>
  <p>
    <div id="myDiv">This DIV hidden unless hover over the computer's monitor</div>
  </p>
</div>
<!-- Yellow DIV ID numbers overlaid on top of computer components -->
<div id="num_cust1">1</div>
<div id="num_cust2">2</div>
<div id="num_cust3">3</div>

我明白大部分答案是如何工作的,如果我点击三个定义的多边形区域中的任何一个,它们就会以蓝色轮廓突出显示 - 但我看不到实现这一点的代码(例如点击事件)。谁能解释一下 how/why 他们在没有任何代码的情况下显示为蓝色(我可以看到)??

Fiddle 输出的屏幕截图,显示蓝色点击区域:

这就是浏览器处理点击地图区域的方式,如果您在 Internet Explorer 中尝试,您会看到一条虚线。在 Chrome 中,您将收到蓝色轮廓,而在 FireFox 中,您不会收到!

它的处理方式类似于按钮。

以下 CSS 将删除轮廓:

map area{
    outline: none;
}

这可以通过

来解决
outline:none;

map 标签用于定义客户端图像映射。图像映射是具有可点击区域的图像。

map 元素所需的名称属性与 img 的 usemap 属性相关联,并在图像和地图之间建立关系.

map 元素包含许多 area 元素,用于定义图像映射中的可点击区域。

要隐藏轮廓你可以这样做

map area {
  outline: none;
}
<map name="primary">
  <area shape="circle" coords="75,75,75" href="#">
  <area shape="circle" coords="275,75,75" href="#">
</map>
<img usemap="#primary" src="http://placehold.it/350x150" alt="350 x 150 pic">

使用 outine css 属性 你可以对地图做很多事情 area.For 你想改变颜色的例子 blue red 你可以做到

map area{
outline-color: red;
}
<map name="primary">
  <area shape="circle" coords="75,75,75" href="#">
  <area shape="circle" coords="275,75,75" href="#">
</map>
<img usemap="#primary" src="http://placehold.it/350x150" alt="350 x 150 pic">