How to use CSS to realize this kind of virtual animation?

the most helpless thing is to write animation clipboard.png
z

Mar.26,2021

text-shadow
filter:blur
I can't see what effect you want


use filter: blur (Npx);
or text-shadow, text body color to be transparent and only show its shadow

    .blur-text {
      color: -sharp0000;
      text-shadow: 0 0 0 -sharp333;
      transition: text-shadow .3s;
      &:hover {
        text-shadow: 0 0 5px -sharp333;
      }
    }
Menu