分类分类
更新时间:2026-02-18 21:07:19作者:fang
本文实例讲述了jQuery+css实现的切换图片功能代码。分享给大家供大家参考,具体如下:
运行效果截图如下:

具体代码如下:
<!DOCTYPE html>
<html>
<head>
<title>demo</title>
<script type="text/javascript" src="jquery.js"></script>
<style type="text/css" >
body {
margin:0; padding:0;
}
.container {
border:6px solid gray; background:black;
width:600px; height:400px; position:relative;
left:50%; margin-left:-300px; border-radius:6px;
-webkit-border-radius:6px; -moz-border-radius:6px;
overflow:hidden;
}
.text-center {
text-align:center;
}
h1 {
font-size:50px; color:gray; font-weight:bolder;
}
.imgUL {
width:100%; height:100%; margin:0px; padding:0px; list-style:none;
}
.imgUL li {
float:left; margin:0px; padding:0px; height:100%;
color:gray; font-weight:bolder; text-align:center;
font-size:100px; line-height:400px;
}
.pageUL {
position:relative; top:-40px; height:40px; list-style:none;
margin:0px; padding:0px; float:right;
}
.pageUL li {
float:left; display:block; width:36px;
height:36px; border:2px solid red;
margin-left:5px; border-radius:4px;
-webkit-border-radius:4px; text-align:center;
-moz-border-radius:4px; line-height:36px;
color:gray; font-weight:bolder; cursor:pointer;
}
.pageUL li:hover {
background:#5ACF00; color:black;
}
.pageUL li.active {
background:#5ACF00; color:black;
}
</style>
<script type="text/javascript" >
$(document).ready(function(){
var autoInterval = null,
imgUL = $(".imgUL"),
imgliList = imgUL.children("li"),
liListLength = imgliList.length,
pageUL = $('.pageUL'),
pageLiList = pageUL.children('li'),
pageLiListLength = pageLiList.length,
// initialize
activePageLi = $(pageLiList[0]);
activePageLi.addClass('active');
imgliList.width(600);
imgUL.width(liListLength * 600);
$(".pageUL li").mouseover(function(){
mouseoverAnimate(this);
}).mouseout(function(){
createInterval();
});
createInterval();
function mouseoverAnimate(_this){
clearInterval(autoInterval);
activePageLi.removeClass('active');
activePageLi = $(_this);
var pageNo = parseInt(activePageLi.html());
activePageLi.addClass('active');
imgUL.animate({
'marginLeft': -600 * (pageNo - 1)
}, 10);
}
function createInterval(){
autoInterval = setInterval(function(){
var pageNo = parseInt(activePageLi.html());
pageNo++;
if(pageNo > pageLiListLength) {
pageNo = 1;
}
activePageLi.removeClass('active');
activePageLi = $(pageLiList[pageNo - 1]);
activePageLi.addClass('active');
imgUL.animate({
'marginLeft': -600*(pageNo - 1)
}, 1100);
}, 1500);
}
});
</script>
</head>
<body>
<h1 class="text-center">Demo</h1>
<div class="container" id="container">
<ul class="imgUL">
<li>Page1</li>
<li>Page2</li>
<li>Page3</li>
<li>Page4</li>
<li>Page5</li>
<li>Page6</li>
</ul>
<ul class="pageUL">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
</ul>
</div>
</body>
</html>
希望本文所述对大家jQuery程序设计有所帮助。
相关
归墟战纪策略游戏262.92 MBv3.95802026-02-14
下载爆裂老奶策略游戏209.43 MBv1.0.112026-02-14
下载超能下蛋鸭策略游戏395.4 MBv1.2.82026-02-14
下载你好盒子实用工具12.1 MBv2.2.852026-02-14
下载我在峡谷当牛马休闲益智87.95 MBv0.7.12026-02-14
下载抽卡监狱2策略游戏190.75 MBv1.4.92026-02-14
下载Campus社交通讯94.36 MBv1.19.02026-02-14
下载冒险传奇角色扮演141.73 Mv9991.12026-02-14
下载心动次元app社交通讯43.96 Mv1.0.1.32026-02-14
下载致亲爱的我角色扮演1.63Gv1.02026-02-14
下载狼伴侣游戏手机版冒险游戏155.6 Mv1.02026-02-14
下载Loclike社交通讯169.08 Mv2.2.112026-02-14
下载










