If you want to change image after user click on image or button then read: alternate image after onclik event.
To do this we will use javascript events (onmouseover and onmouseout) and src attribute.
Demo:
In this demo when you move mouse over image the arrow change side. It is achieved with changing src property. When mouse is over image we see undo.png and when mouse is out of image we see redo.png.
Here is code used for demo:
<script language="javascript" type="text/javascript">
function mouseOverImage()
{
document.getElementById("image").src = "http://www.userinterfaceicons.com/80x80/undo.png";
}
function mouseOutImage()
{
document.getElementById("image").src ="http://www.userinterfaceicons.com/80x80/redo.png";
}
</script>
<img id="image" src="http://www.userinterfaceicons.com/80x80/redo.png" alt="Example of change src atribute of image with javascript" onmouseover="mouseOverImage()" onmouseout="mouseOutImage()">
onmousemove event occurs when the mouse pointer is moved. Each time a user moves the mouse one pixel, a mousemove event occurs.
onmouseout event occurs when the mouse pointer moves away from a specified object.
For demo purposes are used free icons from user interface icons.
For blogger users:
To include js in post see instructions about javascript in blogspot post. Important is that js code should be in one line.
Related articles:
Show and hide html elements
3 comments:
Nice code. Thanks for the tip. The only thing I would love to know is what the code would look like for several images/buttons. Would you be able to give me a hand?
Thanks,
Andy
I will answer you for few days.
Here is code, click on first button and two images will be changed. Click on second button and old two images will appear. Hope this code help you.
<html>
<head>
<script type="text/javascript">
function newImages()
{
document.getElementById("image1").src="http://www.userinterfaceicons.com/80x80/undo.png";
document.getElementById("image2").src="http://www.userinterfaceicons.com/80x80/forward.png";
}
function oldImages()
{
document.getElementById("image1").src="http://www.userinterfaceicons.com/80x80/redo.png";
document.getElementById("image2").src="http://www.userinterfaceicons.com/80x80/backward.png";
}
</script>
<body>
<img id="image1" src="http://www.userinterfaceicons.com/80x80/redo.png" alt="Example of change src atribute of image with javascript">
<img id="image2" src="http://www.userinterfaceicons.com/80x80/backward.png" alt="Example of change src atribute of image with javascript">
<button id="butChangeImg" onclick="newImages()">New images</button>
<button id="butChangeImg" onclick="oldImages()">Old images</button>
</body>
</html>
Post a Comment