画像のいずれかをクリックすると、プロジェクトのテキストと画像が表示されますが、[ポートフォリオに戻る]、[ポートフォリオ]、または[連絡先]をクリックすると、プロジェクトのコンテンツは消えずに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() {