gpt4 book ai didi

javascript - jQuery 不隐藏 $hgroup.attr ('data-project' 中 url 的内容 div)

转载 作者:行者123 更新时间:2023-11-28 13:41:03 25 4
gpt4 key购买 nike

如果您单击任何图像元素文本和图像出现,但是如果您单击“返回投资组合”或“投资组合”或“联系”,元素内容将保留在网站框架的左侧而不是消失:

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() {

最佳答案

$('a selector for your buttons').click(function() {
$('#slideshow-container').hide();
});

关于javascript - jQuery 不隐藏 $hgroup.attr ('data-project' 中 url 的内容 div),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12390459/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com