HTML xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> ... /HTML> |
如果沒有您沒有用到OFFICE的擴展功能的話,您可以忽略第二個schema。
同時,您需要在STYLE元素中注冊VML和Microsoft Office Extensions
v\:* { behavior: url(#default#VML); } o\:* { behavior: url(#default#VML); } |
如果沒有您沒有用到OFFICE的擴展功能的話,您可以忽略第二個樣式的定義。
下面說說常用的幾個元素
1.Shape元素
用法:v:shape ...>/v:shape>
它的常用屬性:
FillColor:圖象填充色。
標簽語法:
v:element fillcolor="expression">
腳本語法:
element.fillcolor="expression"
expression=element.fillcolor
Path:指定繪畫的路徑
腳本用法:
v:shape id="rect01"
fillcolor="red" strokecolor="red"
coordorigin="0 0" coordsize="200 200"
style="position:relative;top:1;left:1;width:20;height:20"
path="m 1,1 l 1,200, 200,200, 200,1 x e">
/v:shape>
說明:用字母m(moveto命令)定義圖象初始點的坐標,例子中為(1,1)
用字母l(小寫的L字母,lineto命令)開始畫線,先畫到(1,200),再畫到(200,200),再畫到(200,1)
用字母x(close命令)關閉線條
用字母e(end命令)結束
注意:每兩個數(shù)字組成一個坐標
Title:鼠標移動到圖象上時的提示文字
Style:圖象的樣式
Filled:決定閉合路徑中是否需要填充(True/False)
StrokeColor:圖象路徑的顏色
2.Shape元素有效的子元素
TextBox:在圖象中定義一個文本框
用法:
v:shape>
v:textbox>VML/v:textbox>
/v:shape>
TextPath:設置文字路徑,要使用該屬性,path屬性的TextPathOK一定要為true;并且TextPath的on屬性要為true
詳細說明文擋請上參考網(wǎng)站查閱!?。?br>
簡單的例子:
HTML xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> HEAD> STYLE> v\:* { behavior: url(#default#VML);} o\:* { behavior: url(#default#VML);} /STYLE> TITLE>VML Sample/TITLE> /HEAD> BODY> v:shape fillcolor="green" style="position:relative;top:1;left:1;width:200;height:200" path = "m 1,1 l 1,250, 250,500, 500,500, 500,250, 250, 1 x e" title="test" strokeColor="yellow"> v:fill type='gradient' id='fill1' color='red'/> v:textbox>VML/v:textbox> /v:shape> /BODY> /HTML> |
下一篇:歡迎品嘗用vml畫的蘋果~~