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?