43 lines
965 B
HTML
43 lines
965 B
HTML
<!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>
|
|
.ball {
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 50%;
|
|
background-color: #f00;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50px;
|
|
animation: move 10s infinite alternate;
|
|
}
|
|
@keyframes move {
|
|
0% {
|
|
left: 0px;
|
|
}
|
|
100% {
|
|
left: 500px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<button id="btn">执行一段耗时的 JS 代码</button>
|
|
<div class="ball"></div>
|
|
<script>
|
|
function delay(duration) {
|
|
var start = Date.now();
|
|
while (Date.now() - start < duration) {}
|
|
}
|
|
btn.onclick = function () {
|
|
delay(5000);
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|