12345678910111213141516171819202122232425 |
- <html>
- <body>
- <xml:namespace ns="urn:schemas-microsoft-com:vml" prefix="v" />
- <!-- Include the VML behavior -->
- <style>v\: * { behavior:url(#default#VML); display:inline-block }</style>
- <!--p-->
- <v:shape id="rect01" style="HEIGHT:50px; LEFT:1px; TOP:1px; WIDTH:50px"
- coordsize = "200,200" fillcolor = "green" strokecolor = "green"
- path = "m1,1l1,200,200,200,200,1xe"/>
- <!--/p-->
- <script language="JavaScript" type="text/javascript">
- <!--
- //document.getElementById("rect01").onmouseover = Change;
- function Change() {
- rect01.fillColor = (rect01.fillColor == "red") ? "green" :
- (rect01.fillColor == "green") ? "blue" : "red";
- }
- -->
- </script>
- </body>
- </html>
|