Prev Demo
Mouse Mov And Mouse Out
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h2><i>PLace the corsor on the image to change the image</i></h2> <img onmousemove="bigImg(this)" onmouseout="normalImg(this)" src="http://techfunda.com/HTPictures/Generics/4-635791814942223169.png"> <p>Techfunda is the best online tutorials </p> <p></p> <script> function bigImg(x) { x.style.height = "164px"; x.style.width = "640px"; } function normalImg(x) { x.style.height = "50px"; x.style.width = "40px"; } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output