DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML5詳解 >> HTML5新特性之用SVG繪制微信logo
HTML5新特性之用SVG繪制微信logo
編輯:HTML5詳解     

Html5新特新 
Html5 中的一些有趣的新特性: 
1、用於繪畫的 canvas 元素 
2、用於媒介回放的 video 和 audio 元素 
3、對本地離線存儲的更好的支持 
4、新的特殊內容元素,比如 article、footer、header、nav、section 
5、新的表單控件,比如 calendar、date、time、email、url、search 
SVG繪制圖片效果圖:


代碼如下: 

復制代碼代碼如下:
<style> 
* { 
padding: ; 
margin: ; 

body { 
background-color: #ddd; 

.container { 
width: px; 
height: px; 
position: relative; 
top: px; 
left: %; 
transform: translated(-%,,); 
background-color:#c; 
border-radius: px; 
box-shadow: px #cbfbf; 

.container object{ 
position:relative; 
top:px; 
left:px; 

</style> 
<body> 
<div class="container"> 
<object data="logo.svg" width="" height="" type="image/svg+XML" /> 
</div> 
</body> 

這個是XML格式的代碼,跟Html文檔分離的。 

復制代碼代碼如下:
<?XML version="." standalone="no"?> 
<!DOCTYPE svg PUBLIC "-//WC//DTD SVG .//EN" 
"http://www.w.org/Graphics/SVG/./DTD/svg.dtd"> 
<svg width="%" height="%" version="." XMLns="http://www.w.org//svg"> 
<ellipse cx="" cy="" rx="" ry="" style="fill:rgb(,,);stroke:rgb(,,);stroke-width:"/> 
<circle cx="" cy="" r="" style="fill:#c;stroke:#c;stroke-width:"/> 
<circle cx="" cy="" r="" style="fill:#c;stroke:#c;stroke-width:"/> 
<polygon points=", , ," style="fill:#fff;stroke:#fff;stroke-width:"/> 
<ellipse cx="" cy="" rx="" ry="" style="fill:#c;stroke:#c;stroke-width:"/> 
<ellipse cx="" cy="" rx="" ry="" style="fill:rgb(,,);stroke:rgb(,,);stroke-width:"/> 
<circle cx="" cy="" r="" style="fill:#c;stroke:#c;stroke-width:"/> 
<circle cx="" cy="" r="" style="fill:#c;stroke:#c;stroke-width:"/> 
<polygon points=", , ," style="fill:#fff;stroke:#fff;stroke-width:"/> 
</svg>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved