How to use image map | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to use image map

how to measure image coordinate

22nd Dec 2016, 12:13 AM
Abhi
Abhi - avatar
1 Answer
0
<img src="yourpic.jpg" width="256" height="256" USEMAP="#mymap"> <MAP name="mymap"> <AREA SHAPE="RECT" COORDS="0,0,128,128" HREF="index.html"> <AREA SHAPE="RECT" COORDS="128,0,256,128" HREF="#" onclick="location.href='index.html'"> <AREA SHAPE="RECT" COORDS="0,128,128,256" HREF="#"> <AREA SHAPE="RECT" COORDS="128,128,256,256" HREF="#"> <AREA SHAPE="DEFAULT" HREF="#"> </MAP> this example takes an image 256px X 256px and divides it into 4 equal squares measuring 128px X 128px <AREA SHAPE="RECT" COORDS="left , top , right , bottom"> left top right and bottom are absolute positions of the part of the image we want to map
16th Jan 2017, 12:38 AM
Glenn Morris
Glenn Morris - avatar