首页 > 代码库 > SVG矢量图像:微笑
SVG矢量图像:微笑
效果图
SVG图片:Happy.svg
<?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/SVG/DTD/svg10.dtd"> <svg viewBox="0 0 400 400" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"> <title>IdiotInSvg</title> <defs> <radialGradient id="tsybius"> <stop offset="0%" stop-color="black" /> <stop offset="100%" stop-color="lawngreen" /> </radialGradient> </defs> <g id="mainlayer"> <rect x="0" y="0" width="400" height="400" fill="lawngreen" /> <rect x="0" y="40" width="400" height="400" fill="url(#tsybius)" /> <circle cx="200" cy="200" r="175" stroke="black" stroke-width="1pt" fill="yellow" /> <circle cx="130" cy="145" r="60" stroke="black" stroke-width="1pt" fill="white" /> <circle cx="130" cy="170" r="35" stroke="black" stroke-width="1pt" fill="black" /> <circle cx="270" cy="145" r="60" stroke="black" stroke-width="1pt" fill="white" /> <circle cx="270" cy="170" r="35" stroke="black" stroke-width="1pt" fill="black" /> <path d="M 100,250 C 160,320 240,320 300,250" style="fill:none;stroke:#000000;stroke-width:5pt" /> </g> </svg> <!---->
调用页面:Template.htm
<!DOCTYPE html PUBLIC "-//W3C//DTDXHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>SMILING FACE 2014/11/15</title> </head> <body align="center"> <h1>SMILING FACE</h1> <iframe src="http://www.mamicode.com/Happy.svg" width="400" height="400" /> </body> </html>
END
SVG矢量图像:微笑
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。