officemanager2
Technical User
With the help of Vacunita I've been able to get this jquery working quite well.
The issue I'm currently faced with is that when the image is triggered it will only move down the screen when it appears. I've looked into toggle but cannot get it to work from what I read slideUp is not the effect I want.
I’ve found on line some CSS
that uses ordered/unordered lists to achieve the goal of the rollover sliding up but I’d prefer to get this done with Jquery.
Does anyone know if the effect on the above css link can be done using jquery. I'm still new to jquery and I don't want to try and develop something that can't be developed.
thanks
Code:
$(document) .ready(function(){
$(".clickMe"). click(function() {
$("img.imgfade") .fadeIn(1000);
$(this).find(".picframe") .slideToggle("slow");
});
});
The issue I'm currently faced with is that when the image is triggered it will only move down the screen when it appears. I've looked into toggle but cannot get it to work from what I read slideUp is not the effect I want.
I’ve found on line some CSS
that uses ordered/unordered lists to achieve the goal of the rollover sliding up but I’d prefer to get this done with Jquery.
Does anyone know if the effect on the above css link can be done using jquery. I'm still new to jquery and I don't want to try and develop something that can't be developed.
thanks