
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
text-align: center;
}
b {
color: orange;
}
</style>
</head>
<body>
<img
src="https://cdn.cnbj0.fds.api.mi-img.com/b2c-shopapi-pms/pms_1617008568.53329550.jpg"
alt=""
/>
<h1>距离 小米11 ultra 开抢, 还有 <b>100</b> 秒!!!</h1>
</body>
<script>
var b = document.querySelector("b");
var h1 = document.querySelector("h1");
var count = parseInt(b.innerHTML);
var a = setInterval(function () {
count--;
b.innerHTML = count;
if (count < 100 && count > 10) {
b.innerHTML = "0" + count;
}
if (count < 10) {
b.innerHTML = "00" + count;
}
if (count < 0 || b.innerHTML === "000") {
clearInterval(a);
alert("对不起,已经售完o(╥﹏╥)o");
h1.innerHTML = "已经售完了o(╥﹏╥)o";
}
}, 100);
</script>
</html>