Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <p>Backdrop filter sliding test.
  <div class="subject"></div>
  <div class="backdrop"></div>
  <div class="subject"></div>
</body>
</html>
 
.subject {
  background: repeating-linear-gradient(
    0deg,
    red,
    red 5px,
    white 5px,
    white 10px
  );
  width: 200px;
  height: 200px;
}
.backdrop {
  height: 200px;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  margin: 10px;
  animation: wiggle 10s infinite;
  border: 1px solid #aaa;
}
@keyframes wiggle {
  0% { transform: translateY(0); }
  10% { transform: translateY(30px); }
  30% { transform: translateY(-30px); }
  60% { transform: translateY(90px); }
  80% { transform: translateY(-90px); }
  100% { transform: translateY(0); }
}
Output 300px

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
flackrpro
0viewers