Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a problem with jQuery again, I hope someone can help me out.

please view the Portfolio section here http://matoweb.com (there should be two items)

I'm redesigning my portfolio website and I want to list last 6 portfolio items with a blur hover effect. I managed to get this working with one image (the second one that was actually the first post) but now I added another test portfolio item and have two problems:

  • i only get the blurred image of the first post (second image), the image of the second post doesn't get it's own blurred version image
  • the second problem is that when I hover over one image it triggers animation for the second one, too

here is the code for these effects, but you may view it in action on website:

        $(window).load(function(){
            $(".img_portfolio").pixastic("blurfast", {amount:1});
        });

        $(function() {
            $(".prva_stran_portfolio_single").mouseenter(function () {
                $(".normal_image").fadeOut("fast");
            }).mouseleave (function () {
                $(".normal_image").fadeIn("fast");
            });
        });
        $(function() {
        $(".roll").css("opacity","0");

        $(".roll").hover(function () {

        $(this).stop().animate({
        opacity: 0.9
        }, "fast");
        },

        function () {

        $(this).stop().animate({
        opacity: 0
        }, "fast");
        });
        }); 

any help would be really appretiatied guys.

How could I add some sort of ID to the images, so that they don't all blur when hovering over only one of them?

share|improve this question

2 Answers

Instead of just a hover, I would use an each(function) to keep them all separate. They should not be in different functions, really...keeps things cleaner and easier to debug this way.

$(".prva_stran_portfolio_single").each(function(){
    $(this).hover(function(){
        Run everything that happens on a hover (mouse in) here.
    },{
        Run everything that happens on a hover (mouse out) here.
    });
});
share|improve this answer

You don't need to use an ID, you should be able to call .find("normal_image") which will search all descendant elements. Conversely, you could use .closest() to search all ancestor elements for the closest matching element.

I'm not sure why pixastic is not creating a blurred canvas for both images, my suggestion would be to try using a .each(function() { pixastic(blur) }) with the selector.

share|improve this answer
thanks for your help but it doesn't seem to work... I guess I'll have to forget about the blur on hover effect.. – matejlatin Sep 16 '12 at 19:22

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.