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