...". The image element can reference the tag. The "name" attribute is used to implement image mapping, so the "name" attribute is essential."/> ...". The image element can reference the tag. The "name" attribute is used to implement image mapping, so the "name" attribute is essential.">

Home  >  Article  >  Web Front-end  >  What is the usage of map tag in html5

What is the usage of map tag in html5

WBOY
WBOYOriginal
2021-12-17 17:08:462333browse

The map tag in html5 is used to define a client-side image mapping, which is an image with a clickable area. The syntax is "<map name="value">...</map> ", the image element can reference the "name" attribute of the tag to implement image mapping, so the "name" attribute is essential.

What is the usage of map tag in html5

The operating environment of this tutorial: Windows 10 system, HTML5 version, Dell G3 computer.

What is the usage of map tag in html5

tag is used for client-side image mapping. An image map is an image with clickable areas.

The usemap attribute inWhat is the usage of map tag in html5 can reference the id or name attribute in (depending on the browser), so we should add both id and name attributes to .

area elements are always nested inside map elements. The area element defines an area in the image map.

The syntax is as follows:

<map name="value">...</map>

The example is as follows:

<html>
<head>
<meta charset="utf-8">
<title>123</title>
</head>
<body>
<p>点击太阳或其他行星,注意变化:</p>
<img src="planets.gif" width="145"    style="max-width:90%" alt="Planets" usemap="#planetmap">
<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm">
  <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm">
  <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
</map>
</body>
</html>

Output result:

What is the usage of map tag in html5

When you click on the picture, the page will jump:

What is the usage of map tag in html5

## Recommended tutorial: "

html video tutorial"

The above is the detailed content of What is the usage of map tag in html5. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn