<!DOCTYPE html>
<html>
<head>
<title>SVG</title>
<meta charset='UTF-8'>
</head>
<body>
<h2>HTML5 SVG Circle</h2>
<svg id="svgelem" height="200" xmlns="http://wwww.w3.org/2000/svg">
<circle id="redcircle" cx="50" cy="50" r="50" fill="red"></circle>
</svg>
<h2>HTML5 SVG Rectangle</h2>
<svg id="svgelem" height="200" xmln="http://www.w3.org/2000/svg">
<rect id="redrect" width="300" height="100" fill="red"></rect>
</svg>
<h2>HTML5 SVG Line</h2>
<svg id="svgelem" height="200" xmln="http://www.w3.org/2000/svg">
<line x1="0" y1="0" x2="200" y2="100" style="stroke:red;stroke-width:2"></line>
</svg>
<h2>HTML5 SVG Ellipse</h2>
<svg id="svgelem" height="200" xmln="http://www.w3.org/2000/svg">
<ellipse cx="100" cy="50" rx="100" ry="50" fill="red" />
</svg>
<h2>HTML5 SVG Polygon</h2>
<svg id="svgelem" height="200" xmln="http://www.w3.org/2000/svg">
<polygon points="20,10 300,20,170,50" fill="red" />
</svg>
<h2>HTML5 SVG Polyline</h2>
<svg id="svgelem" height="200" xmln="http://www.w3.org/2000/svg">
<polyline points="0,0 0,20 20,20 20,40 40,40 40,60" fill="red" />
</svg>
<h2>HTML5 SVG Gradient Ellipse</h2>
<svg id="svgelem" height="200" xmln="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rbg(200,200,200); stop-opacity:0" />
<stop offset="100%" style="stop-color:rbg(0,0,255); stop-opacity:1" />
</radialGradient>
</defs>
<ellipse cx="100" cy="50" rx="100" ry="50" style="fill:url(#gradient)"/>
</svg>
</body>
</html>
HTML5 SVG
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- ****此篇为svg的进阶介绍篇,了解更多关于svg的介绍请看 HTML5学习--SVG全攻略(基础篇)*** *...