编辑下面的代码:【加编码】
<html> <body> <svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <defs> <filter id="MyFilter" filterunits="userSpaceOnUse" x="0" y="0" width="200" height="120"> <fegaussianblur in="SourceAlpha" stddeviation="4" result="blur"></fegaussianblur> <feoffset in="blur" dx="4" dy="4" result="offsetBlur"></feoffset> <fespecularlighting in="blur" surfacescale="5" specularconstant=".75" specularexponent="20" lighting-color="#bbbbbb" result="specOut"> <fepointlight x="-5000" y="-10000" z="20000"></fepointlight> </fespecularlighting> </filter> </defs> <rect x="1" y="1" width="198" height="118" fill="#cccccc"></rect> <g filter="url(#MyFilter)"> <path fill="none" stroke="#D90000" stroke-width="10" d="M50,90 C0,90 0,30 50,30 L150,30 C200,30 200,90 150,90 z"></path> <text fill="#FFFFFF" stroke="black" font-size="45" font-family="Verdana" x="52" y="76">SVG</text> </g> </svg> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂