运行 ❯
获取您自己的网站
×
更改方向
保存代码
更改主题,深色/浅色
转到空间
<!DOCTYPE html> <html> <body> <h2>SVG feDropShadow Filter</h2> <svg height="110" width="110" xmlns="http://www.w3.org/2000/svg"> <defs> <filter id="f1"> <feDropShadow dx="12" dy="14" stdDeviation="1" flood-opacity="0.7"/> </filter> </defs> <rect width="90" height="90" fill="yellow" filter="url(#f1)" /> Sorry, your browser does not support inline SVG. </svg> </body> </html>