blob: 1ebf2778bf8601717c6a2fbfd6ec7f5e9749a769 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Filters Animation: Hue-rotate</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">
<link rel="help" href="http://www.w3.org/TR/filter-effects-1/#FilterProperty">
<link rel="help" href="http://www.w3.org/TR/filter-effects-1/#funcdef-hue-rotate">
<link rel="help" href="http://www.w3.org/TR/css3-animations/#animations">
<link rel="match" href="css-filters-animation-hue-rotate-ref.html">
<meta name="assert" content="The blue square should be violet">
<style type="text/css">
@keyframes animate {
0% {
filter: hue-rotate(90deg);
}
100% {
filter: none;
}
}
.square {
width: 100px;
height: 100px;
background: blue;
animation-name: animate;
animation-play-state: paused;
animation-delay: -2s;
animation-duration: 4s;
animation-timing-function: linear;
}
</style>
</head>
<body>
<p>You should see a violet rectangle. Neither red nor blue.</p>
<div class="square"></div>
</body>
</html>