css3动画模拟光标

来源:互联网 发布:wps在线数据库 编辑:程序博客网 时间:2024/06/05 11:17
.animation::after {    content:'';    display: block;    width:1px;    height:16px;    animation: blink 1s infinite steps(1, start)  }@keyframes blink { 0%{   background-color: white; } 50% {   background-color: black; } 100% {   background-color: white; }

给一个元素添加上class=“animation“ 就是看到一闪一闪的样子了