このコードを*.jsファイルとして保存します(少し変更しました):
$(function(){
changeImg();
})
function changeImg(){
var randomNumber = Math.floor(Math.random()*(9));
var theImage = $('#container > img').eq(randomNumber);
if (theImage.css("opacity")==0){
theImage.delay(500).animate({
opacity:1
},250, function(){
changeImg();
});
} else {
theImage.delay(500).animate({
opacity:0
},250, function(){
changeImg();
});
}
}
あなたはそのように見えるはずです:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>fancy_fade_outs</title>
<style type="text/css">
img {
display: block;
width: 137px;
min-height: 109px;
margin-right: 9px;
margin-bottom: 9px;
opacity:0;
border: 0;
float: left;
}
#container {
width: 438px; /* =(image width + margin right)*3 */
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script><!-- jquery on google-->
<script src="fadeScript.js"></script><!-- path to your script-->
</head>
<body>
<div id="container">
<img src="http://dummyimage.com/50/000/000" />
<img src="http://dummyimage.com/50/000/000" />
<img src="http://dummyimage.com/50/000/000" />
<img src="http://dummyimage.com/50/000/000" />
<img src="http://dummyimage.com/50/000/000" />
<img src="http://dummyimage.com/50/000/000" />
<img src="http://dummyimage.com/50/000/000" />
<img src="http://dummyimage.com/50/000/000" />
<img src="http://dummyimage.com/50/000/000" /><div style="clear: both;"></div>
</div>
</body>
</html>