0

およびを使用して自動スライダーを追加した後、水平リンクが正しく機能しませJQuery ん。私の評判のためにこれ以上のhrefリンクを投稿できなかったので、さらにいくつかのハイパーリンクを追加します。aerospaceautomotive

以下は私の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は、メニューリンクの絶対上に配置されているため、リンクを押すことはできません。したがって、スライドショーを別の位置に配置するか、メニューの位置も絶対にする必要があります。

それが役に立てば幸い :)

于 2012-04-11T12:47:13.040 に答える