有趣的css -1

7 篇文章 0 订阅

最近频繁的更博客和学习有点儿疲惫了,正在浏览到一个不错的css仓库。选了一个比较有趣的打字效果实现介绍一下。
css仓库:
https://lhammer.cn/You-need-to-know-css/
代码实现:
https://codepen.io/tcap99/pen/yQNqaJ

解析
HTML

<main class="main">
  <span>You-need-to-know-css!</span>
 </main>

CSS

main {
    width: 100%; height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  span {
    display: inline-block;
    width: 21ch;
    font: bold 200% Consolas, Monaco, monospace;   /*等宽字体*/
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    border-right: 1px solid transparent;
    animation: typing 10s steps(21), caret .5s steps(1) infinite;
  }
  @keyframes typing{
    from {
        width: 0;
    }
  }
  @keyframes caret{
    50% { border-right-color: currentColor}
  }

逐步介绍css代码
flex居中布局

main {
    width: 100%; height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
 span {
    display: inline-block;
    width: 21ch;
    font: bold 200% Consolas, Monaco, monospace;   /*等宽字体*/
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    border-right: 1px solid transparent;
    animation: typing 10s steps(21), caret .5s steps(1) infinite;
  }

https://www.zhangxinxu.com/wordpress/2016/07/monospaced-font-css3-ch-unit/
首先看到width: 21ch,ch是什么鬼?是不是打错了。详情请浏览张老师的文章。
ch和em,rem,ex一样,是CSS中为数不多和字符相关的相对单位。和ch相关的字符是0,没错,就是0123456的那个阿拉伯数字0. 1ch表示一个0字符的宽度,所以000000所占据的宽度就是6ch。
因为我们font都使用了等宽字体,刚好有21个字符,所以width设定为21ch。
这段代码作用是为了在宽度不为21ch,遮盖住没有显示的字符。

overflow: hidden;

border-right: 1px solid transparent;这就输入时闪烁的光标。这里有两个动画,typing在10秒中执行了21次,caret在不停的在0.5秒执行(闪烁的光标)。

border-right: 1px solid transparent;
animation: typing 10s steps(21), caret .5s steps(1) infinite;

通过改变21次宽度,达到逐渐输入文字的效果。

 @keyframes typing{
    from {
        width: 0;
    }
  }

通过设置颜色和不停执行动画达到光标效果。

@keyframes caret{
    50% { border-right-color: currentColor}
  }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值