Blurred Text Effect

| Comments

I came across a strange site that blurred the text of answers and asked the reader to sign up to see it. It was strange because the text was already there, just blurred via css. I thought it was an interesting little snippet so I decided to record it.

This is how it blurs.

1
2
3
4
.blurred_text {
  color: transparent;
  text-shadow: 0 0 7px #777;
}

Comments