0

If you click on any of the images project text and image appears however if you click on 'Back To Portfolio' or 'Portfolio' or 'Contact' the project content remains on the left hand side of the website frame rather than disappearing:

http://www.janinejauvel.com/test/

    /* Launching a project
     ------------------------------------------------- */

    $('hgroup').click(function() {

        // scroll to top
        $.scrollTo(0, 250);

        $hgroup     = $(this);
        // hide contact 

        if ($('#contact').is(':visible')) {

            $('#contact').stop().slideUp({
                duration: 250, 
                easing: 'easeInOutCubic'
            });
        }

        // show the loading gif in the container
        $('#slideshow-container').html('<div class="loading"><img src="/assets/img/loading.gif" alt="loading"/></div>');

        $('section#work').stop().animate({
            'margin-top' : '+=' +($(window).height() - 55) + 'px'
        }, 700, 'easeInOutCubic', function () {

            // load the project into the slideshow container div
            $('#slideshow-container').load('' + $hgroup.attr('data-project') + ' #content', function() {
                // bind slideshow
                    slideshow.render();
                    $('section#work').css('margin-top', '0px');
            });


        });

        return false;

    });

}, 

this.folioLinkShow  = function() {

    if ($('.slide').length > 1) {


        $('#portfolio-catcher').hover(function() {

            $('nav#show-projects div').slideDown(200);


        }, function () {

            $('nav#show-projects div').slideUp(200);

        });


    } else {

        $('nav#show-projects').unbind();

    }
}, 

this.loadImages     = function() {
4

1 回答 1

0
$('a selector for your buttons').click(function() {
    $('#slideshow-container').hide();
});
于 2012-09-12T14:35:37.280 回答