Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #649710

    Hi :)

    I’ve been trying all sorts of different code and quick CSS from other forum threads here but can’t seem to find a solution.

    I’m creating a homepage for a photographer and she doesn’t like all the animation on the galleries. So we want the pictures just to show up old school style when moused over. An example is this page:

    When you mouse over a thumbnail the big image above fades to white and then fades from white to the next picture. This is the effect we would like to remove.

    How is this done?

    Thanks!

    #649746

    Also removing the fadein/out when flipping through the photos in the light box would be wonderful :)

    #650807

    Hi,

    Open js/shortcodes.js and look for:

    					big_prev.stop().animate({opacity:0}, function()
    					{
    						$next.insertAfter(oldImg);
    						oldImg.remove();
    						big_prev.animate({opacity:1});
    
    						big_prev.attr('title',$(_self).attr('title'));
    
    					});

    Replace it by this:

    					big_prev.stop().animate({opacity:1}, function()
    					{
    						$next.insertAfter(oldImg);
    						oldImg.remove();
    						big_prev.animate({opacity:1});
    
    						big_prev.attr('title',$(_self).attr('title'));
    
    					});

    Regards,
    Josue

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.