blob: 0651e89e41df36b8c47d93502faa2df37e0054b6 [file] [log] [blame]
<!DOCTYPE html>
<title>CSS Backdrop Filters Animation: Hue-rotate Reference</title>
<link rel="author" title="Mason Freed" href="mailto:masonfreed@chromium.org">
<style>
.square {
position: absolute;
width: 100px;
height: 100px;
top: 100px;
left: 100px;
background: blue;
}
.filt {
position: absolute;
width: 200px;
height: 200px;
top: 50px;
left: 50px;
backdrop-filter: hue-rotate(45deg);
}
.greenbox {
position: absolute;
width: 50px;
height: 50px;
top: 75px;
left: 75px;
background: green;
}
</style>
<p>You should see a violet rectangle with a green box. Neither red nor blue.</p>
<div class="square"></div>
<div class="filt">
<div class="greenbox"></div>
</div>