运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>The feOffset and feBlend Filters</h2> <svg height="150" width="150" xmlns="http://www.w3.org/2000/svg"> <defs> <filter id="f1" width="120" height="120"> <feOffset in="SourceGraphic" dx="20" dy="20" /> <feBlend in="SourceGraphic" in2="offOut" /> </filter> </defs> <rect width="90" height="90" stroke="green" stroke-width="3" fill="yellow" filter="url(#f1)" /> Sorry, your browser does not support inline SVG. </svg> </body> </html>