|
|
发表于 2026-3-14 15:32:47
|
显示全部楼层
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>红绿灯</title>
<style>
.circle {
width: 100px;
height: 100px;
border-radius: 50%;
margin: 10px;
}
.red {
background-color: red;
}
.yellow {
background-color: yellow;
}
.green {
background-color: green;
}
</style>
</head>
<body>
<div class="circle red" id="leftCircle"></div>
<div class="circle yellow" id="middleCircle"></div>
<div class="circle green" id="rightCircle"></div>
<div id="countdownBox"></div>
<script src="script.js"></script>
</body>
</html> |
|