使用JavaScript创建一个可点击的圆圈10次,并在中心显示点击的次数,可以通过以下步骤实现:
<!DOCTYPE html>
<html>
<head>
<title>Clickable Circle</title>
<style>
#circle {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: blue;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 20px;
}
</style>
</head>
<body>
<div id="circle"></div>
<script src="script.js"></script>
</body>
</html>
var circle = document.getElementById("circle");
var count = 0;
circle.addEventListener("click", function() {
count++;
circle.innerHTML = count;
});
for (var i = 0; i < 10; i++) {
var newCircle = document.createElement("div");
newCircle.className = "circle";
newCircle.style.left = Math.random() * 90 + "vw";
newCircle.style.top = Math.random() * 90 + "vh";
document.body.appendChild(newCircle);
}
这个例子中,我们使用JavaScript创建了一个可点击的圆圈,并通过事件监听器在每次点击时更新点击次数。同时,我们还使用了CSS样式来定义圆圈的外观。
领取专属 10元无门槛券
手把手带您无忧上云