-2
我想要顯示(淡入)陣列中的所有圖像時,有人懸停在Class of 2013
。顯示在懸停陣列中的所有圖像上
到目前爲止,我能夠在懸停顯示一個圖像...
我可以他們都發送到同一個<img src...
?
事情是,我有3個類,2013, 2014, 2015
...和每個圖像路徑陣列是不同的長度...所以我想動態地輸入正確數量的img src
元素來顯示給定的數量每班的圖像。
這裏是我當前的代碼:
<html>
<head>
<script src="jquery.js"></script>
<script type="text/javascript">
var ITLP = new Array();
ITLP[0] = "./name1.jpg";
ITLP[1] = "./name2.jpg";
var max = ITLP.length;
$(document).ready(function() {
showimg();
});
function showimg()
{
$(".box > .overlay > img").attr("src",getImages());
$(".box").hover(
function(){ $(this).find(".overlay").fadeIn(); } ,
function(){ $(this).find(".overlay").fadeOut(); }
);
}
function getImages()
{
console.log(max);
var i = Math.floor(Math.random()*max);
console.log(ITLP[i]);
return ITLP[i];
}
</script>
</head>
<body>
<div class="box">
Class of 2013:
<div class="overlay"> <!-- Put ITLP images to display here...-->
<img src="" border="none"/>
</div>
</div>
</body>
</html>