Blur Web Page Elements Easily with V-Blur for Vue.js

John Au-Yeung
The Startup
Published in
7 min readDec 26, 2019

--

Blurring elements are useful when you want something hidden. For example, it’s handy to blur something for paywalls. With CSS, blurring content is easy with the blur property. However, if you want to change the blurring dynamically, then the blur settings have to be changed by JavaScript. For Vue.js apps, there’s the V-Blur library to help us achieve the dynamic blur effect. This makes changing the blur setting as easy as adding a few lines of code.

In this article, we will make a newsreader app that lets users blur and unblur headline…

--

--