我一直在尋找如何做到這一點,但無法弄清楚如何。我做的最好的是用HTML製作圖像。我試圖編輯圖像設置後,就像你使用document.getElementById()
來改變文本一樣,但我無法使它工作。我如何緩衝圖像,當我想要顯示它,並且能夠移動它
到目前爲止我的代碼...
function run() {
x++;
y++;
if (x==10 || x==30) {
exmp.visibility = show //doesn't work
}
if (x==20 || x==40) {
exmp.visibility = hidden //doesn't work
}
if (x==50) {
x=0
y=0
}
document.getElementById("exmp").style = "position:absolute; TOP:0px; LEFT:0px; WIDTH:239px; HEIGHT:74px" //doesn't work
}
x=0
y=0
document.write("<div ID=\"exmp\"; STYLE=\"position:absolute; TOP:0px; LEFT:0px; WIDTH:239px; HEIGHT:74px\"> <IMG SRC=\"exmp.png\"; alt=\"image\"> </div>");
setInterval(run,33);
請從顯示到目前爲止你已經嘗試過什麼摘錄。 – 2012-01-10 23:50:40
你想修改什麼「設置」?你想要對圖像做什麼?讓它在頁面上飛行?調整它?把兔子拉出來?我們需要更多的細節才能夠幫助 – Ktash 2012-01-10 23:51:19