0

画像のいずれかをクリックすると、プロジェクトのテキストと画像が表示されますが、[ポートフォリオに戻る]、[ポートフォリオ]、または[連絡先]をクリックすると、プロジェクトのコンテンツは消えずにWebサイトフレームの左側に残ります。

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 に答える