美文网首页
html锚链接和图像映射

html锚链接和图像映射

作者: 我是不是很帅 | 来源:发表于2018-08-23 15:51 被阅读0次

    <a name="tips">锚(显示在页面上的文本)</a>

    在页面上定义一个锚,name也可以用id=“tips”代替;

    创建指向该锚的链接:(同一个页面锚点链接跳转)

    <a href="#tips">文本</a>

    跨页面锚点链接跳转:

    <a href="url#tips">文本</a>(url:页面的URL地址)

    创建图像映射(地图链接):

    <img src="" usemap="#planetmap " alt="Planets">

    <map name="planetmap" id="planetmap">

        <area shape="circle"  coords="129,161,10"  href ="/example/html/mercur.html"  target ="_blank"       alt="Mercury">

    </map>

    相关文章

      网友评论

          本文标题:html锚链接和图像映射

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