I need to see an HTML image map area

前端 未结 4 1217
眼角桃花
眼角桃花 2021-01-06 13:37

I am trying to set a map area on my image, but I want it to be an octagon so I really need to see what I\'m drawing.

Unfortunately there is not way for me to style t

相关标签:
4条回答
  • 2021-01-06 13:47

    There are many tools for you to plot the coordinates, and below are four that I usually do.

    1. If using MS Windows, MS Paint shows the coordinates at the status bar.
    2. Use an online tool, for example http://www.image-maps.com/
    3. Use a editor, for example Adobe Dreamweaver
    4. Use FireBug (http://getfirebug.com/)

    Hope that helps :)

    0 讨论(0)
  • 2021-01-06 13:48

    you can wrap the area in a span and style it to get height, width, background, and position.

    0 讨论(0)
  • I use the following website to get the coordinates

    http://imagemap-generator.dariodomi.de/

    <map name="planetmap">
    
    <area alt="facebook" coords="334,280,41" shape="circle" href="https://www.facebook.com/" target="_blank" />
    
    <area alt="Twitter" coords="438,280,41" shape="circle" href="https://twitter.com/" target="_blank" />
    
    <area alt="Gogle Plus" coords="541,280,39" shape="circle" href="https://plus.google.com/" target="_blank" />
    
    <area alt="linkedin" coords="645,280,39" shape="circle" href="https://in.linkedin.com/" target="_blank" />
    
    <area alt="youtube" coords="751,280,41" shape="circle" href="https://www.youtube.com/" target="_blank" />
    </map>
    

    For your better I give the link as a reference from there you find what is HTML image map and how can we use it

    Image map details

    0 讨论(0)
  • 2021-01-06 13:54

    I found an online image map editor that will help you:

    http://www.maschek.hu/imagemap

    0 讨论(0)
提交回复
热议问题