Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey guys. My aim was to create myself a personal portfolio site for a new hobby, photography.

At the moment everything is in place. (This can be seen here.)

The problem is, try as I might, I can't get the image to replace in CSS. I mucked around for ages attempting to move the images etc, but it just failed miserably. My new plan is to use jQuery.

Here's where I need your guy's help. I have no knowledge of jQuery, and I need the large image to be replaced with the one in the thumbnail when it's clicked. Kinda like a button. Is that possible, and can you help me? Many thanks.

share|improve this question

4 Answers

You could try some jQuery like this:

$(document).ready(function(){
    $('.gallery img').click(function() {
        var img = $(this).attr('src');
        $('.content img').attr('src', img);
    });
});

Obviously you will have to include the jQuery core, normally within the <head> tag's of your pages:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>

Take a look at the demo here


What might be another nice touch, for your thumbnails, make the cursor into a pointer (make the thumbnails look click-able) - either directly with CSS, or let jQuery do it for you:

$(document).ready(function(){
    $('.gallery img').click(function() {
        var img = $(this).attr('src');
        $('.content img').attr('src', img);
    }).each(function() {
        $(this).css('cursor', 'pointer');
    });
});

Take a look at the demo here

share|improve this answer
You beat me to it. ;) – Chris W. Mar 15 '11 at 20:57
@Beau_August Note that Scoobler and my scripts do the same thing except his does the image change on a click and mine does it on a hover. – Chris W. Mar 15 '11 at 20:59
@Chris W. - TV is rubbish tonight :D (see the update for proof haha) +1 for the hover!! – Scoobler Mar 15 '11 at 21:02
That is simply gorgeous. Thanks guys. I totally understand now. That's amazing. Just on a side note ~ How does the page actually look to you? Do you think it's ok? And sorry for the spam, do you think hover or click would be nicer? – Beau August Mar 15 '11 at 21:10
@Scoobler Hahaha: "Bored? Why not write javascript for strangers on the internet for free?" I guess there are worse things to do with one's free time. – Chris W. Mar 15 '11 at 21:14
show 2 more comments

Yes, you'll definitely need to use Javascript/jQuery to do what you want to do.

Include the jQuery script on your page between the <head> tags.

<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.1.min.js"></script>

Then this simple function should do what you need to do...

$(document).ready(function() {
$('.img img').hover(function() {
    $img = $(this)
    $('.content img').attr('src',$img.attr('src'))
});
});

You should really learn more about Javascript/jQuery in general it's a very cool technology and a good skill to have.

Check out jQuery tutorials.

share|improve this answer
This is great! Do I just copy and paste that multiple times for the multiple thumbnails, modifying as needed? Maybe I'm being naive here. – Beau August Mar 15 '11 at 21:05
No, no, it will work for all images because the "selector" .img img refers to all <img> elements inside of an HTML element with a class of .img (which is what all of your thumbnails are). – Chris W. Mar 15 '11 at 21:10
Oh I see. Well I hope you know that you've inspired me to get on my way with jQuery. I did plan on learning it...but wow, that's so simple yet gorgeous. Exactly what I needed. You guys are all stars, I love this website. – Beau August Mar 15 '11 at 21:12

Please don't use JQuery. Don't use any JavaScript at all. It's like overkill when the effect you're after is pretty straightforward with just pure CSS2. Take a look at the NOT SUITABLE FOR WORK site:

http://www.simple-nude.com/nude-photos.html

and notice what happens when you hover over any of the thumbs. Something like that seems just what you want. I don't think there's any JavaScript anywhere on that site. Yes, I'm crochety and old-fashioned, but I always prefer the least JS possible.

-- pete

Minimum JS is my crusade, in fact. The worst is simple, easy links implemented with JS! Bah!

share|improve this answer
Thanks Pete. Only problem is...it messes with CSS3. I did have something similar to that, see (scrapbook.beauaugust.co.uk/a) But the problem was it kept messing everything up. The scale webkit was screwing with it. I think jQuery is the way to go – Beau August Mar 15 '11 at 21:06
First of all, have an upvote for introducing naked women into a discussion on the superfluous use of Javascript in webpages. ;) Secondly I don't think that this is an instance of 'unnecessary' use of javascript. While I agree in general people fall back to jQuery waaaaaay more often than they should when all they really need is some more thoughtful CSS, but I think in this case it makes for cleaner and simpler code to dynamically alter the large image. – Chris W. Mar 15 '11 at 21:13
@B, yes, your /a page is almost perfect! How do you mean "it messes with CSS3?" Well, if you've decided on JQ then it's a dead issue, but still I'm interested in what you mean. Thanks! – Pete Wilson Mar 15 '11 at 21:14
@Chris: "cleaner and simpler": yeah, maybe so. But how can JQuery contribute to the new cleaner and simpler concept? Why not just JS "img.style.width/height=x/y"? Same for position? Not arguing, just interested. – Pete Wilson Mar 15 '11 at 21:22
Basically, I had it set so that when you hover over the image, it would move it across to where the "main" area is. But when I hovered over a thumbnail, the scale effect continued on the side. It also kept pushing elements about. I'm new to CSS I won't deny, but it really was a pain. And this jQuery is fantastic. I like the idea of using CSS as much as I can, but I had reached the endpoint. And how do I "Upvote" you all? You guys have been so helpful! – Beau August Mar 15 '11 at 21:27
show 3 more comments

Anyone for a no conflict version of this for 1.5.1 ... I have a similar thumb opening into a main image working ok in dreamweaver with JQ 1.2.3 but when loaded into Joomla running JQ 1.5.1 it don't work. Code below.

<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".tmbimage a").click(function(){
    var largePath = jQuery(this).attr("href");
    var largeAlt = jQuery(this).attr("title");      
    jQuery("#mainimg").attr({ src: largePath, alt: largeAlt });     
}); 
});
</script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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