运行 ❯
建立您
自己的
网站
×
改变方向
保存代码
改变主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>SVG feGaussianBlur Filter</h2> <svg height="100" width="100" xmlns="http://www.w3.org/2000/svg"> <defs> <filter id="f1" x="0" y="0" xmlns="http://www.w3.org/2000/svg"> <feGaussianBlur in="SourceGraphic" stdDeviation="55" /> </filter> </defs> <rect width="90" height="90" fill="yellow" filter="url(#f1)" /> Sorry, your browser does not support inline SVG. </svg> </body> </html>