blob: 0d4e755c68337badcb629b0e56cea63dd3cf7a47 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Filters Animation: Combined filters 001 Reference</title>
<link rel="author" title="Gunther Brunner" href="mailto:takeshimiya@gmail.com">
<link rel="reviewer" title="Dirk Schulze" href="mailto:dschulze@adobe.com">
<link rel="reviewer" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: black;
filter:
blur(10px)
brightness(50%)
sepia(50%)
grayscale(50%)
saturate(50%)
hue-rotate(45deg)
invert(50%)
opacity(50%)
}
</style>
</head>
<body>
<p>You should see a gray blurred rectangle.</p>
<div class="square"></div>
</body>
</html>