Ejemplo 1: cómo hacer un desenfoque de fondo en CSS
/* Answer to "blur behind element css" */
/*
This blurs everything behind the element it's applied to
*/
backdrop-filter: blur(10px);
Ejemplo 2: css desenfoque de imagen de fondo solamente
// best workaround is two images layered... (one on left is on top)
background-image: url(opaque_blurred.png), url(regular_bakground_img.jpg);
// BAM! that right there is worth at least a buck donation ;-)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)