zoukankan      html  css  js  c++  java
  • 如何在一整张背景图中,加隐形的a标签

    很常见的一个需求,就上图每个国家图标都得加上各自指定的a标签

    这时,我们就可以去加上隐藏且定位准确的几个a标签

    这个时候,主要用到的就是text-indent和overflow 这两个属性的配合。text-indent 属性规定文本块中首行文本的缩进;overflow 属性规定当内容溢出元素框时发生的事情。

    案例

    <div style="position:relative;margin:0 10px;">

    <img src="https://i.alipayobjects.com/i/localhost/png/201501/4DiyU5rSSb.png" style="100%">

    <a id="tuishui1" href="http://ds.alipay.com/fd-peece7p90o1/index.html" class="country" style="16%;height:17%;left:14%;top:21%;">荷兰</a>

    <a id="tuishui2" href="http://ds.alipay.com/fd-nn1d11oso5k/index.html" class="country" style="23%;height:25%;left:18%;top:53%;">意大利</a>

    <a id="tuishui3" href="http://ds.alipay.com/fd-556xg2aa4tq/index.html" class="country" style="16%;height:18%;left:35%;top:34%;">德国</a>

    <a id="tuishui4" href="http://ds.alipay.com/fd-vsnvd6on474/index.html" class="country" style="15%;height:16%;left:43%;top:12%;">瑞士</a>

    <a id="tuishui5" href="http://ds.alipay.com/fd-leogk4hpv6s/index.html" class="country" style="21%;height:22%;left:64%;top:4%;">英国</a>

    <a id="tuishui6" href="http://ds.alipay.com/fd-ytp228dt7wn/index.html" class="country" style="22%;height:24%;left:55%;top:30%;">韩国</a>

    <a id="tuishui7" href="http://ds.alipay.com/fd-vtev8ix3xsw/index.html" class="country" style="19%;height:21%;left:65%;top:57%;">法国</a>

    <a id="tuishui8" href="http://ds.alipay.com/fd-j1338t72e2q/index.html" class="country" style="16%;height:18%;left:48%;top:78%;">西班牙</a>

    </div>

    <style>

    .country {
      position: absolute;
      display: block;
      text-indent: 30em;
      overflow: hidden;
      border-radius: 100px;
    }

    </style>

  • 相关阅读:
    【转】JSP三种页面跳转方式
    我要从头做起
    转载:用 Tomcat 和 Eclipse 开发 Web 应用程序
    html的style属性
    Java连接oracle数据库
    tomcat遇到的问题(总结)
    ceshi
    今天要小结一下
    argument.callee.caller.arguments[0]与window.event
    JavaScript事件冒泡简介及应用
  • 原文地址:https://www.cnblogs.com/Gwen-hui/p/4372123.html
Copyright © 2011-2022 走看看