代码之家  ›  专栏  ›  技术社区  ›  Augustin Riedinger

CSS:带标题的内容之前/之后

  •  22
  • Augustin Riedinger  · 技术社区  · 11 年前

    我能行

    div:after {
      content: "hello"
    }
    

    但是我能要 hello 带有标题的文本,以便当我用鼠标悬停它时,显示标题?

    谢谢

    3 回复  |  直到 11 年前
        1
  •  21
  •   Michael    5 年前

    您不需要伪元素:

    p {
        background:lightblue;
        padding:15px;
        margin:15px;
    }
    <p class="hover-me" title="I Show up on Hover">Some Text</p>

    但是,如果需要使用伪元素

    p {
        background:lightblue;
        padding:15px;
        margin:15px;
        position: relative;
    }
    
    p:hover:after {
        position: absolute;
        content:attr(data-title);
        left:0;
        top:0;
        width:200px;
        height:1.25rem;
        background-color: blue;
        color:white;
    }
    <p class="hover-me" data-title="I Show up on Hover">Some Text</p>
        2
  •  4
  •   Amr    8 年前

    解决此问题的一个方法是使用两个伪元素。

    例如 ::之后 是主要元素 ::之前 将在悬停状态下显示,并充当标题。

    此外,您可以使用javascript或jQuery代码检测伪元素上的鼠标事件。

    Demo

    Bellow是演示说明:

    $('.alert').on('mousemove', function(e) {
        if (e.offsetX > (this.offsetWidth - 42)) { //42 is the ::after element outerWidth
            $(this).addClass('hover');
        } else {
            $(this).removeClass('hover');
        }
    }).on('mouseleave', function(e) {
        $(this).removeClass('hover');
    }).on('click', function(e) {
        if (e.offsetX > (this.offsetWidth - 42)) { //42 is the ::after element outerWidth
            $(this).remove();
        }
    });
    .alert {
        padding: 15px;
        margin: 50px 0 20px;
        border: 1px solid transparent;
        border-radius: 4px;
        position: relative;
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1;
        font-size: 0.85em;
        transition: all 1s;
    }
    .alert::after, .alert::before {
        content: 'X';
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        height: 100%;
        font-size: 0.85em;
        padding: 0;
        line-height: 40px;
        text-align: center;
        font-weight: 900;
        font-family: cursive;
        cursor: pointer;
    }
    .alert::before {
        display: none;
        content: 'This is a Title';
        top: -105%;
        width: auto;
        border: inherit;
        border-radius: inherit;
        padding: 0 0.4em;
        background: rgba(0, 0, 0, 0.48);
        color: white;
    }
    .alert.hover::after {
        color: white;
        filter: sepia(10%);
        transform: scale(1.1);
        border-radius: inherit;
        border: inherit;
        background: inherit;
    }
    .alert.hover::before {
        display: inline-block;
    }
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    
    <div class="alert">
      <strong>Hover</strong> over X to display the title.
    </div>
        3
  •  0
  •   nikitz    11 年前

    使用:

    div:hover:before{
      content: "Bye";
              }