<object id=directdraw
classid="clsid:369303c2-d7ac-11d0-89d5-00a0c90833e6"
style="positiion:absolute;top:0;left:0;width:320;height:200"
>
<param name="line0001" value="繪圖指令1">
<param name="line0002" value="繪圖指令2">
...
</object>
繪圖指令分類:
(一)常見形狀
1.矩形類 //rotation是以度為單位的旋轉角度
rect(x ,y, width, height, rotation) //矩形
oval(x ,y, width, height, rotation) //橢圓
roundrect(x ,y, width, height, arcwidth, archeight, rotation)
2.弧形類
arc(x ,y, width, height, startangle, arcangle, rotation) //弧形
pie(x ,y, width, height, startangle, arcangle, rotation) //餅圖
3.多邊形類
polygon(npoints, x1, y1, x2, y2, [x3, y3, ....], rotation) //閉合
polyline(npoints, x1, y1, x2, y2, [xn, yn, ....], rotation) //不閉合
(二)效果函數
1.線條效果
setlinecolor(r, g, b) //設置畫線顏色
setlinestyle(style) //style=(1:實線;2:虛線;0:隱藏)
2.填充效果
setfillcolor(r, g, b, backr, backg, backb)
setfillstyle(style) //style=(1:實心;2:透明;3:-;4:|;5:/;6:/;7:+;8:x)
(三)文字輸出函數
setfont('字體',width,height,r,g,b) //設置字體
text('要輸出的文字內容', x,y,z) //輸出文字
控制函數 //定義<object>后在<script></script>里使用。
引用格式:directdraw.functionname()
rotate(x-rotation, y-rotation, z-rotation) //旋轉
scale(x-scale,y-scale,z-scale) //縮放
translate(x-coordinate,y-coordinate,z-coordinate) //平移
setidentity() //復原
clear() //清除,清除后無法恢復!
新聞熱點
疑難解答