2

我有动画选项卡,在将鼠标悬停在链接上h2(触发幻灯片动画)时,我会向上/向下设置幻灯片效果,就像手风琴一样。

<div class="slideBox">
    <div class="pane"><img src="images/homepage/sm1.jpg" alt="Room" /></div><!--pane-->
    <h2 class="drkbluebg" style="border-bottom:7px solid #fff;">
        <b>main title</b>
        <br />
        photo caption
    </h2>
    <div class="pane" style="display:block;">
        <img src="images/homepage/sm2.jpg" alt="Room" />
    </div><!--pane-->
    <h2 class="current greybg"><b>main title</b><br/>photo caption</h2>
</div><!--slideBox-->

但是,动画不会停止。手风琴效果(幻灯片效果)不断触发。有没有办法来解决这个问题?

(顺便说一下,到目前为止我用jQuerytools尝试过,但是如果您有其他解决方案,欢迎您提出)

这是JS代码:

$(function() {
    $(".slideBox").tabs(".pane", {tabs: 'h2', effect: 'slide', event: 'mouseover'});    
});

这是我所做的链接http://www.ixpander.com/simulation/so_issue/

4

2 回答 2

0

尝试使用mouseenter而不是mouseover这样它只会在鼠标第一次进入元素时触发,而不是每次鼠标移动时触发

$(".slideBox").tabs(".pane", {tabs: 'h2', effect: 'slide', event: 'mouseenter'});    
于 2012-10-11T19:28:02.367 回答
0

我会将它与类和 css 一起使用:

<style>
.pane{
   height:0;
   overflow:hidden;
}

.pane.active{
   height:100px;
}

</style>

然后我将使用 jQuery 添加类,如下所示。

<script>
$(document).ready(function() {
    $(".slideBox").on('hover', function(){
      $(this).prev('.pane').addClass('active');
    });
}
</script>
于 2012-10-11T19:32:43.077 回答