您好,登錄后才能下訂單哦!
這篇文章主要介紹了html5的offlline緩存如何使用的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇html5的offlline緩存如何使用文章都會有所收獲,下面我們一起來看看吧。
SVG 文件可通過以下標簽嵌入 HTML 文檔:<embed>、<object>或者<iframe>。
復制代碼
代碼如下:
<embed src="rect.svg" width="300"height="100"
type="image/svg+xml"
pluginspage="http://www.adobe.com/svg/viewer/install/"/>
pluginspage 屬性指向下載插件的 URL。
復制代碼
代碼如下:
<object data="rect.svg"width="300" height="100"
type="image/svg+xml"
codebase="http://www.adobe.com/svg/viewer/install/"/>
<iframe src="rect.svg" width="300"height="100">
</iframe>
在這三個中<iframe>是比較早期的標簽,現在用的比較的少了。用的較多的還是<embed>標簽。
同時我們也可以將svg直接寫入HTML文件中:
這樣的話需要先引入SVG的dtd文件:
復制代碼
代碼如下:
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
再在<svg>標簽中填入需要的代碼:
復制代碼
代碼如下:
<svg width="100%" height="100%" version="1.1"
xmlns="http://www.w3.org/2000/svg" onclick="ccc();">
<ellipse cx="240" cy="100" rx="220" ry="30"
style="fill:yellow"/>
<ellipse cx="220" cy="100" rx="190" ry="20" id="w1"
style="fill:white"/>
</svg>
如果svg代碼在html中,我們就更容易寫javascript來控制圖形的變換:
復制代碼
代碼如下:
<script type="text/javascript">
function ccc(){
var a = document.getElementById("w1");
a.style.fill="red";
a.setAttribute("cx", "150"); //設置值
a.setAttribute("ry", "50"); //設置值
}
</script>
下面介紹一些svg的預定義的形狀元素:
矩形 <rect>
圓形 <circle>
橢圓 <ellipse>
線 <line>
折線 <polyline>
多邊形 <polygon>
路徑 <path>
關于“html5的offlline緩存如何使用”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“html5的offlline緩存如何使用”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。