Sep 28, 2002 #1 RYSNET Technical User Aug 20, 2002 14 LK Tell me how to double the image size when the mouse over it with java script?
Sep 28, 2002 #2 RISTMO Programmer Nov 16, 2001 1,259 US Here it is: <img src="image.gif" style="width:12px;height:100px;" onMouseOver="this.style.width=this.style.width*2;this.style.height=this.style.height*2;" onMouseOut="this.style.width=this.style.width/2;this.style.height=this.style.height/2;"> Rick Upvote 0 Downvote
Here it is: <img src="image.gif" style="width:12px;height:100px;" onMouseOver="this.style.width=this.style.width*2;this.style.height=this.style.height*2;" onMouseOut="this.style.width=this.style.width/2;this.style.height=this.style.height/2;"> Rick
Sep 29, 2002 Thread starter #3 RYSNET Technical User Aug 20, 2002 14 LK How to rotate continuesly an image? Pl. Tell me the code.in java script. Upvote 0 Downvote