码迷,mamicode.com
首页 > 其他好文 > 详细

SVG矢量图像:微笑

时间:2014-11-15 23:23:31      阅读:560      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   color   ar   os   sp   on   2014   

效果图

bubuko.com,布布扣

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="Happy.svg" width="400" height="400" />
    </body>
</html>

END

SVG矢量图像:微笑

标签:style   http   io   color   ar   os   sp   on   2014   

原文地址:http://my.oschina.net/Tsybius2014/blog/345144

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!