Image filter (Blur image or spoiler)

Erassus ︎ ︎ Posted in General Discussion 2 years ago

Hi all!

I was wondering if is possible to add a image filter to photos in the timeline?

Example, all the post have the three dots that you can interact, report, edit, etc.

So i need to add a function that the image will have a blurr effect (or a spoiler) like this:

.spoiler {
    filter: blur(20px);
    transition-property: -webkit-filter;
    transition-duration: .4s;
}
.spoiler:hover, .spoiler:focus {
    filter: blur(0px);
}

So when the image is the filter applied, all the users will view the image blurred, but if the people click the image, they can see.

In others words, something like this:

enter image description here

Any ideas? (:

Replies
us Eric Croskey Replied 2 years ago

This would be great. When a user uploads an image, they should have the choice along with admins and moderators to blur or filter the image as NSFW.

Please make this happen soon.