【问题标题】:CSS animation - cut text in middleCSS动画 - 在中间剪切文本
【发布时间】:2022-01-09 23:16:30
【问题描述】:

我在导航菜单中找到了悬停后使用动画效果的页面。

https://haimbenisty.com/

我不知道该怎么做。我已经测试了一些 CSS,但只能使笔画成为真正的文本。有谁知道该怎么做?我真的很喜欢这种效果,文字看起来像是从中间切开的。

【问题讨论】:

    标签: html css animation effect


    【解决方案1】:

    使用

    h1:hover{
      position:relative;
      display:inline-block;
        }
    h1:after, h1:hover{
      content:'';
      position:absolute;
      width:100%;
      height:2px;
      left:0; top:17px;
      background:#fff;
    }
    <h1>EXAMPLE</h1>

    【讨论】:

      猜你喜欢
      • 2021-07-28
      • 2014-04-30
      • 2012-02-23
      • 2021-05-24
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-02-13
      • 2010-11-10
      相关资源
      最近更新 更多