image/ads/1.gif"/> ;
< li>
/li>
-
" >
1
2
3gt;
4 ;
/li>
2》jQuery コードは次のとおりです。
$(function(){
var len = $(".num >li").length;
varindex = 0;
var adTimer;
$(" .num li").mouseover(function(){
Index = $(".num li").index(this); // ここの「this」は「 $(this) 」に置き換えることができます
showImg(index);
}).eq(0) .mouseover(); //ページを開いたときに、最初の画像がアニメーションをトリガーする属性として配置されます。 >
//<広告画像> ; を使用します。アニメーションを停止するには属性がスライドインし、アニメーションを開始するには属性がスライドアウトします。
$(".ad").hover(function() {
clearInterval(adTimer);
},function() {
adTimer = setInterval(function(){
showImg(index);
index ;
if(index == len ){ Index=0; }
} , 3000);
}).trigger("mouseleave");
})
// 指定されたインデックスを介して別の画像を表示します🎜>
function showImg(index){
var adHeight = $(".content_right .ad").height();
$(".slider").stop(true,false).animate ( {"top": -adHeight*index},1000 ) ;
$(".num li").removeClass("on")
.eq(index).addClass("on"); 🎜>}
3》対応する CSS スタイル:
コードをコピー
コードは次のとおりです:
.content_right{
background:#eee;
border : 1px solid #AAAAAA;
width: 586px;
float:left;
}
.content_right .ad {
margin-bottom:10px;
width:586px;
height:150px;
overflow:hidden;
position:relative;
}
.content_right .slider,
.content_right .num {
position:absolute;
}
.content_right .slider li{
list-style:none;
display:inline;
}
.content_right .slider img{
width:586px;
height:150px;
display:block;
}
.content_right .num{
right:5px;
bottom:5px;
}
.content_right .num li{
float: left;
width: 16px;
height: 16px;
line-height: 16px;
text-align: center;
font-family: Arial;
font-size: 12px;
color: #FF7300;
background-color: #fff;
border: 1px solid #FF7300;
overflow: hidden;
margin: 3px 1px;
cursor: pointer;
}
.content_right .num li.on{
width: 21px;
height: 21px;
line-height: 21px;
color: #fff;
background-color: #FF7300;
font-size: 16px;
margin: 0 1px;
border: 0;
font-weight: bold;
}