• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:四角描画の大きさを変えたい)

四角描画の大きさを変えたい

このQ&Aのポイント
  • 四角描画の大きさを変える方法について質問しています。
  • また、始点(x, y)を変更して任意の場所に描く方法についても質問しています。
  • 具体的なコードの一部について記述がわからないとのことです。

質問者が選んだベストアンサー

  • ベストアンサー
noname#84373
noname#84373
回答No.2
situmonnsya
質問者

お礼

<HTML xmlns:v="urn:schemas-microsoft-com:vml"> <head> <style type="text/css"> v\:* { behavior: url(#default#VML); } </style> <script language="JavaScript"><!-- function draw0(){ box.fillcolor="#5555ff"; box.strokecolor="red" box.strokeweight="5pt" box.style.top='100'; box.style.left='200'; box.style.width='200'; box.style.height='400'; } // --></script> </head> <body> <form> <v:rect id=box style='width:80;height:50;left:0; top:0; position:absolute;'           fillcolor="#9999ff" strokecolor="blue" strokeweight="2pt" /> <br><br> <input type="button" value=" OK " onClick="draw0()"> </form> </body> </HTML> のように変更し、解決しました。 ありがとうございます。

その他の回答 (1)

noname#84373
noname#84373
回答No.1

box.style.width='100px'; box.style.height='200px'; http://www.tohoho-web.com/wwwvml.htm#rect

situmonnsya
質問者

補足

参考サイトは見ていましたが、記述の仕方がわかりませんでした。 ありがとうございます。 ちなみに、始点(x,y)を変更し任意の場所に置く方法はありませんか? box.style.top='100px'; box.style.left='200px'; とか。

関連するQ&A