0

所以我有一个部分,我想单击图像并.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');
    });
4

1 回答 1

0

我建议您可以将 JQuery 用于您想要执行的功能。这是供您参考的链接:JQuery Accordion。我希望它有所帮助。谢谢!

于 2013-10-20T17:31:49.243 回答