0

JQuery 使用exceptaerospace和添加自动滑块后,我的水平链接无法正常工作automotive。添加更多超链接,因为由于我的声誉,我无法发布更多 href 链接。

下面是我的jQuery代码:

function slideSwitch() {
var $active = $('#slideshow IMG.active');

if ( $active.length == 0 ) $active = $('#slideshow IMG:last');
var $next =  $active.next().length ? $active.next()
    : $('#slideshow IMG:first');
var $sibs  = $active.siblings();
var rndNum = Math.floor(Math.random() * $sibs.length );
var $next  = $( $sibs[ rndNum ] );
$active.addClass('last-active');
$next.css({opacity: 0.0})
    .addClass('active')
    .animate({opacity: 1.0}, 1000, function() {
        $active.removeClass('active last-active');
    });
}

$(function() {
setInterval( "slideSwitch()", 5000 );
}); 

html:

<div id="hori">
   <ul>
      <li><a href="/home/adapco/Desktop/ksa1" target="name">Aerospace</a></li>
      <li><a href="/home/adapco/Desktop/ksa2.css" target="name">Automotive</a></li>
   </ul>
</div>

CSS:

#slideshow
{
position:relative;
height:500px;
right:-570px;
top:-350px
}

#slideshow img
{
position:absolute;
top:0;
left:0;
z-index:8;
}

#slideshow img.active
{
z-index:10;
}

#slideshow img.last-active
{
z-index:9;
}

检查此链接http://jsfiddle.net/KyRus/20/

4

1 回答 1

0

您有一个 id 为“slideshow”的 div,其中包含一些图像。此 DIV 位于菜单链接的绝对 ONTOP - 因此您不能按链接。因此,您要么需要将幻灯片定位不同,要么也将菜单位置设为绝对位置。

希望能帮助到你 :)

于 2012-04-11T12:47:13.040 回答