Source code

Revision control

Copy as Markdown

Other Tools

<!--
Any copyright is dedicated to the Public Domain.
-->
<!DOCTYPE html>
<html>
<head>
<title>CSS and SVG Filter Chains: CSS Filter as Last Filter</title>
<link rel="author" title="Max Vujovic" href="mailto:mvujovic@adobe.com">
<style type="text/css">
#target {
filter: url(#magenta-to-green-and-blur);
background-color: #f0f;
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<p>You should see a blurred green square.</p>
<div id="target"></div>
<svg width="0" height="0">
<filter id="magenta-to-green-and-blur" x="-50" y="-50" width="200" height="200" filterUnits="userSpaceOnUse">
<!-- Turn the magenta square into a red square. -->
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="identity"/>
<feFuncG type="table" tableValues="0 0"/>
<feFuncB type="table" tableValues="0 0"/>
<feFuncA type="identity"/>
</feComponentTransfer>
<!-- Blur the red square. -->
<feGaussianBlur stdDeviation="3" color-interpolation-filters="sRGB"/>
<!-- Turn the blurred red square into a blurred green square. -->
<feColorMatrix type="hueRotate" values="90" color-interpolation-filters="sRGB"/>
</filter>
</svg>
</body>
</html>