对于网站,是否可以将所有图像放入池中,每次打开或刷新页面时都会绘制3个不同的图像?
答案 0 :(得分:0)
你不能用html随机化图像,你必须使用java脚本或css5试试这个
window.onload = choosePic;
var myPix = new Array("images/lion.jpg","images/tiger.jpg","images/bear.jpg");
function choosePic() {
randomNum = Math.floor((Math.random() * myPix.length));
document.getElementById("myPicture").src = myPix[randomNum];
}