我觉得所有人都应该去看辉夜姬
有人懂吗
哦对,挂一下这个漂泊者
// 第一个轮播 - 三张辉夜姬图
var images1 = ["heng1.png", "heng2.png", "heng3.png"];
var current1 = 0;
var el1 = document.getElementById("carouselImg");
for (var i = 0; i < images1.length; i++) { var pre = new Image(); pre.src = images1[i]; }
setInterval(function() {
var next;
do { next = Math.floor(Math.random() * images1.length); } while (next === current1);
el1.style.opacity = "0";
setTimeout(function() {
current1 = next;
el1.src = images1[current1];
setTimeout(function() { el1.style.opacity = "1"; }, 50);
}, 500);
}, 3000);