我以为我很厚颜无耻,只是用.each
.
它在这里: http: //liebdich.biz/。
客户想要的效果就像这里的原始 Flash 动画一样:http: //blanc-encens.com/。
我怎样才能让下一张图像(如何在这里使用索引?)淡入?
这里的代码:
<style>
ul.list {
list-style-type: none;
}
html, body {
height: 100%;
}
.content {
margin:0 auto;
position: relative;
top:50%;
height:841px;
margin-top:-420px;
width:1190px;
overflow: hidden;
}
</style>
</head>
<body>
<div class="content">
<ul class="list">
<li><img src="1.jpg" /></li>
<li><img src="2.jpg" /></li>
<li><img src="3.jpg" /></li>
<li><img src="4.jpg" /></li>
</ul>
</div>
<script>
$(window).load(function() {
function fade(){
$('ul.list li').each(function( i ){
if (i<3) {
$(this).delay(i*5000).fadeOut(2000);
}
});
}
setTimeout(fade, 5000);
});
</script>
</body>