完整的项目在附件中 复制代码 代码如下: 图片切换 <BR>var num = 0 <BR>$(function(){ <BR>$("div ol li").mouseover(function(e){ <BR>$(this).attr("class","current"); <BR>$(this).siblings().attr("class",""); //兄弟节点的class属性设置为空 <BR>//alert($('ul').index()) <BR>num = $('ul').index() + 2 <BR>var index = $(this).index(); //记录选定的li标签在ul中的索引 <BR>//图片会出现层叠现象为了显示当前的图片,把当前的图片的z-index 值设置为大于其他的兄弟元素 <BR>$("div ul li").eq(index).css({"left":"650px","zIndex":num}) <BR>$("div ul li").eq(index).siblings().css("zIndex",num-1); <BR>//动画效果,图片从右侧飞入 <BR>$("div ul li").eq(index).animate({left:"0"},500) <br><br>}); <br><br>}); <BR> <BR>*{margin: 0px;padding: 0px;border: 0px;} <BR>ul,ol{list-style: none;} <BR>.all{width:650px;height: 250px;margin: 100px auto;position: relative;border: 1px solid crimson;overflow: hidden;} <BR>.all ul{position: relative;z-index: 1;position: relative;} <br><br>/*子 绝 父 相*/ <BR>.all ul li{position: absolute;left: 0;top: 0px;} <br><br>.all ol{position: absolute;z-index: 2; right: 10px;bottom: 10px;} <BR>.all ol li{width: 20px;height: 20px;background: #333;border: 1px solid #509629;font-weight: <BR>bold;text-align: center;line-height: 20px;float: left;margin-left: 10px;margin-top: 10px;} <br><br>.all ol .current{width: 30px;height: 30px;line-height: 30px;border: 1px solid red;margin-top: 0px; <BR>cursor: pointer;} <BR> 1 2 3 4