我已经习惯了使用 jQuery,以至于我似乎无法弄清楚如何用纯 Javascript 来做到这一点。我不想使用 jQuery,因为这是我在网站上使用的唯一片段,而且库太大,仅用于此目的。
这是 jQuery 脚本(工作):http: //jsfiddle.net/1jt6dhzu/2/
$(document).ready(function () {
var whatAmI = ["Fruit", "Not a vegetable", "A phone", "Yummie in tummy"];
var j, i = 4,
n = whatAmI.length;
function changeSubTitle() {
setTimeout(function () {
j = Math.floor(Math.random() * n - 1);
if (j >= i) j += 1;
$(".page-header > h2").animate({
"opacity": 0
}, 700, function () {
$(this).children("span").text(whatAmI[j]);
$(this).animate({
"opacity": 1
}, 700, changeSubTitle);
});
}, 1000);
i = j;
}
changeSubTitle();
});
我想把它换成香草JS。大部分循环可以保留,但是必须替换超时和回调。我想因为我不需要 IE9 支持,所以我可以使用 css3 转换和添加类来做到这一点。这是我到目前为止所拥有的:
h2 {
opacity: 1;
transition: opacity 700ms;
}
h2.fade-out {
opacity: 0;
}
document.addEventListener("DOMContentLoaded", function () {
var whatAmI = ["Fruit", "Not a vegetable", "A phone", "Yummie in tummy"];
var j, i = 4,
n = whatAmI.length,
heading = document.querySelector(".page-header > h2");
function changeSubTitle() {
setTimeout(function () {
j = Math.floor(Math.random() * n - 1);
if (j >= i) j += 1;
heading.classList.add("fade-out");
setTimeout(function () {
heading.children("span")[0].innerHTML = whatAmI[j];
heading.classList.remove("fade-out");
setTimeout(changeSubTitle, 700);
}, 700);
}, 1000);
i = j;
}
changeSubTitle();
});
不幸的是,这不起作用。将timeOuts(最外面的除外)换成transitionend上的事件可能会更好。但我不确定如何实现这个跨浏览器(IE 10 及更高版本,以及其他主要浏览器)。