gpt4 book ai didi

javascript - 在 slider 上显示/隐藏 div

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

我有一个可以正常工作的滑动机制,但是当滑动机制触发时,我无法隐藏 nfooter 的 div 类。当用户点击 img src question.png 时触发幻灯片。

当用户选择 question.png 图像时,我希望 nfooter(这是另一个图像)消失。当用户第二次选择 question.png 图像时,幻灯片机制隐藏,nfooter 显示。

同样,幻灯片机制工作正常,我只是无法让 nfooter 和 question.png 正常播放。

<pre>
<script type="text/javascript">

// When the DOM is ready, initialize the scripts.
jQuery(function( $ ){

// Get a reference to the container.
var container = $( ".container" );


// Bind the link to toggle the slide.
$( "a" ).click(
function( event ){
// Prevent the default event.
event.preventDefault();

// Toggle the slide based on its current
// visibility.
if (container.is( ":visible" )){

// Hide - slide up.
container.slideUp( 300 );

} else {

// Show - slide down.
container.slideDown( 300 );

}
}
);

});

</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head>

<body>
<a href="#"><img src="../question.png" /></a>
<div class="nfooter"></div>

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src='swipe.js'></script>

<div class='container'>
<div class='inner'>
</div>
</div>
</pre>

最佳答案

您是否尝试过简单地隐藏和显示它:

if (container.is( ":visible" )){
// Hide - slide up.
container.slideUp(300, function(){ $('.nfooter').show(); });
}
else
{
// Show - slide down.
container.slideDown(300, function(){ $('.nfooter').hide(); });
}

关于javascript - 在 slider 上显示/隐藏 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18628379/

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