Is there an alternative to backdrop-filter in CSS? To get this example working I have to enable chrome://flags/#enable-experimental-web-platform-features
body {
background: url('http://verdewall.com/wp-content/uploads/2016/08/Background-Images-4H9.jpg') no-repeat center;
}
.glass {
width: 100%;
height: 500px;
background: rgba(0,0,0,0.8);
-webkit-backdrop-filter: contrast(4) blur(30px);
backdrop-filter: contrast(4) blur(30px);
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Blur</title>
</head>
<body>
<div class="glass">
</div>
</body>
</html>
Here is what it looks like with the experimental features enabled:
The problem is the content below it will be dynamic. So not all of it will be images and the alternatives I find only work with images. Like the translucency with the blur shown here: