vote up 7 vote down star
3

I have few images and their rollover images. I want to show/hide the rollover image when onmousemove/onmouseout event using JQuery. All my images name follow the same pattern, like this:

Original Image: Image.gif
Rollover Image: Imageover.gif

I want to insert and remove the "over" portion of image source in onmouseover and onmouseout event respectively.
How can I do it using JQuery?

flag

20% accept rate

5 Answers

vote up 9 vote down check

To set up on ready:

$(function() {
    $("img")
        .mouseover(function() { 
            var src = $(this).attr("src").match(/[^\.]+/) + "over.gif";
            $(this).attr("src", src);
        })
        .mouseout(function() {
            var src = $(this).attr("src").replace("over", "");
            $(this).attr("src", src);
        });
});
link|flag
As their could be more N number of images and rollover images, I am not sure which image currently has mouse cursor pointing to it. – Sachin Gaur Feb 12 at 7:34
K, working on a generic solution.. – Jarrod Dixon Feb 12 at 7:40
vote up 0 vote down
    /* Teaser image swap function */
    $('img.swap').hover(function () {
        this.src = '/images/signup_big_hover.png';
    }, function () {
        this.src = '/images/signup_big.png';
    });
link|flag
vote up 0 vote down

JQuery

#box{ width: 68px; height: 27px; background: url(images/home1.gif); cursor: pointer; } $(function(){ $('#box').hover( function(){ $('#box').css('background', 'url(images/home2.gif)'); }); $('#box').mouseout( function(){ $('#box').css('background', 'url(images/home1.gif)'); }); });

link|flag
vote up 1 vote down

I know you're asking about using jQuery, but you can achieve the same effect in browsers that have JavaScript turned off using CSS:

#element {
    width: 100px; /* width of image */
    height: 200px; /* width of image */
    background-image: url(/path/to/image.jpg);
}

#element:hover {
    background-image: url(/path/to/other_image.jpg);
}

There's a longer description here:http://tutorials.alsacreations.com/imgreactive/

Even better, however, is to use sprites: http://www.findmotive.com/2006/10/31/simple-css-image-rollover/

link|flag
yeah, but is little harder to do this on IMAGE elements :) Besides that, CSS mean the separation of content from presentation. If you do this, you join those things ;) You can't have this for a large site, right? – Ionut Staicu Feb 12 at 7:56
I agree with you about the css, but it seems the question author wanted a generic solution that applies to multiple images all at once. – Jarrod Dixon Feb 12 at 7:56
indeed, but i guess is not the same image repeated over and over again :) I'm a css guy, but this time... is not the best pick :) – Ionut Staicu Feb 12 at 8:03
vote up 4 vote down
$('img.over').each(function(){
    var t=$(this);
    var src1= t.attr('src'); // initial src
    var newSrc = src1.substring(src1.lastIndexOf('/'), src1.lastIndexOf('.')); // let's get file name without extension
    t.hover(function(){
    	$(this).attr('src', newSrc+ '-over.' + /[^.]+$/.exec(src1)); //last part is for extension	
    }, function(){
    	$(this).attr('src', newSrc + '.' + /[^.]+$/.exec(src1)); //removing '-over' from the name
    });
});

you may want to change the class of images from first line. If you need more image classes (or different path) you may use

$('img.over, #container img, img.anotherOver').each(function(){

and so on.

Should work, i didn't test it :)

link|flag
+1 Doh, forgot about the hover event helper! And nice suggestion about adding a class to the images - truly is a best practice :) – Jarrod Dixon Feb 12 at 8:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.