I have two images 'logo.png' and 'logo_highlight.png'. I want to display 'logo' by default and then replace it with 'logo_highlight' when I roll the mouse over it.
Here is my image tag in the html:
<img id="logo" src="images/logo.png" alt="Logo" />
And here is the script (assuming that you have the jQuery loaded)
<script>
$(document).ready(function() {
$('#logo').hover(function(e) {
this.src = this.src.replace('logo', 'logo_highlight');
},
function(e) {
this.src = this.src.replace('logo_highlight', 'logo');
});
});
</script>
The script attaches a 'hover' event handler to the DOM element with ID 'logo'. This has two functions that are applied when the mouse enters and leaves the element respectively.
On entry, the image 'src' attribute is updated. The new one is derived by replacing the string 'logo' in the filename of the original image with 'logo_highlight' in the new version. In other words, the image tag now sources the 'logo_highlight' image.
When the mouse leaves the element, the second function is executed and that replaces the highlighted image with the original.
Short and sweet...
No comments:
Post a Comment