所以我有一个部分,我想单击图像并.speaker-info
通过切换类打开.open
动画.speaker-container
以动画显示高度,.speaker-info
同时切换类.hover
以获取悬停状态图像。一个.fade
类也被切换到.speaker-info
以更改不透明度。如果我单击一个图像并在相同位置关闭它,我的一切工作正常,但是当我打开一个图像并单击另一个图像时,一切都会关闭,因此我需要单击两次才能打开另一个图像,并且悬停图像状态为上一张图片。
因此,我想打开一个 div,然后如果单击另一张图片,则全部关闭并打开最近的一张。我一直在兜圈子,试图找出最好的方法。但我一直碰壁.
我基本上是通过切换 css 类来创建打开/关闭和悬停来触发一切。
这是我的代码。
此外,我正在寻找关于如何使我的代码更灵活、更高效的意见,有时我觉得我写的东西太多了,我可以用更少的几行代码来做同样的事情。
谢谢!
<section id="speakers">
<div class="container">
<div class="row">
<div class='speaker-container'>
<div class="span3 offset1" id="{row_index}">
<div class="speaker-img">
<img src="{speaker_image}" alt="{speaker_name}" class="hover">
<img src="{speaker_hover}" alt="{speaker_name}">
</div>
<h4>{speaker_name}</h4>
</div>
<div class="speaker-info">
<button class="close-speaker">Close</button>
<h3>{speaker_name}{if speaker_title}, {speaker_title}{/if}</h3>
<p>{speaker_bio}</p>
</div>
</div>
</div>
</div>
</section> {!-- /End Speakers --}
Javascript 代码
$('.speaker-container').each(function(){
var containerHeight = $(this).height();
$('.speaker-info').css({ 'top' : containerHeight});
});
$('#speakers .span3').on('click', function(){
var containerHeight = $(this).parent('.speaker-container').height();
var h = $(this).next('.speaker-info').height();
var totalHeight = containerHeight + h;
$(this).find('.speaker-img').children().toggleClass('hover');
$('#speakers .span3').not($(this).next('.speaker-info')).next('.speaker-info').removeClass('fade');
if (!$('.speaker-info').hasClass('fade') && !$('.speaker-container').hasClass('open')) {
$(this).closest('.speaker-container').css({'height' : totalHeight}).addClass('open');
$(this).next('.speaker-info').addClass('fade');
} else {
$('.speaker-container').css({'height' : h}).removeClass('open');
$(this).next('.speaker-info').toggleClass('fade');
$('.speaker-info').removeClass('fade');
}
});
$('.close-speaker').on('click', function() {
var container = $(this).closest('.speaker-info').height();
$(this).closest('.speaker-container').css({'height' : container}).removeClass('open');
$('.speaker-info').removeClass('fade');
});