Day.12.14 HTML图像映射

作者: 挂树上的骷髅怪 | 来源:发表于2016-12-14 20:42 被阅读9次
    <!DOCTYPE html>
    <html>
     <head>
     <meta  charset="utf-8">
      <title> 图像映射 map案例 </title>
     </head>
     <body>
     <img src="图像路径" usemap="#sun" title="太阳">
     <map name="sun" id="sun">
        <area shape="rect" coords="0,0,110,260" href="http://www.baidu.com">矩形对角
        <area shape="circle" coords="177,141,13" href="http://www.imeixue.cn" target="_blank">圆圆心半径
     </map>
     </body>
    </html>
    

    相关文章

      网友评论

        本文标题:Day.12.14 HTML图像映射

        本文链接:https://www.haomeiwen.com/subject/akcwmttx.html