我正在尝试通过JavaScript在DOM元素上设置转换。它正在改变,但是又回到原来的位置吗?我该如何解决这个问题,是什么原因造成的?
我尝试在正在工作的css文件中设置它。
这是我的代码。
let ibox=document.getElementById("inbox");
let pattern=/^(1[0-2]|0?[1-9]):([0-5]?[0-9])/;
let form = document.querySelector("form");
let bh = document.querySelector(".bighand");
let sh = document.querySelector(".smallhand");
const verify=() =>{
pattern.test(ibox.value)?setTime():invalidEntry();
};
const setTime = ()=>{
bh.style.transform = "rotate(180deg)";
sh.style.transform = "rotate(90deg)";
//alert("We have set your time");
}
const invalidEntry=()=>{
alert("Please enter a valid time and format. Example 3:45");
}
html{
height: 100vh;
width: 100vw;
margin:unset;
}
.container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 600px;
}
.clockface{
position:relative;
height:500px;
width:500px;
background-image:url("https://images.homedepot-static.com/productImages/4fe72a29-ac1e-4699-ac41-998ca8a64d4c/svn/designer-stencils-stencils-3697h-64_1000.jpg");
background-size:cover;
}
.clockface.simple:after {
background: #000;
border-radius: 50%;
content: "";
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 5%;
height: 5%;
z-index: 10;
}
.longesthand-container, .bighand-container, .smallhand-container {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/*.smallhand-container {
animation: rotate 43200s infinite linear;
}
.bighand-container {
animation: rotate 3600s infinite steps(60);
}
.longesthand-container {
animation: rotate 60s infinite steps(60);
}*/
.longesthand{
background: #000;
height: 45%;
left: 49.5%;
position: absolute;
top: 14%;
transform-origin: 50% 80%;
width: 1%;
z-index:8;
}
.bighand{
background: #000;
height: 30%;
left: 49%;
position: absolute;
top: 20%;
transform-origin: 50% 100%;
width: 2%;
}
.smallhand{
background: #000;
height: 20%;
left: 48.75%;
position: absolute;
top: 30%;
transform-origin: 50% 100%;
width: 2.5%;
}
@keyframes rotate {
100% {
transform: rotateZ(360deg);
}
}
#inputbox{
height:50px;
font-size:2em;
}
footer {
display: flex;
justify-content: center;
}
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header></header>
<div class="container">
<div class="clockface simple">
<div class="longesthand-container">
<div class="longesthand">
</div>
</div>
<div class="bighand-container">
<div class="bighand" id="bh">
</div>
</div>
<div class="smallhand-container">
<div class="smallhand">
</div>
</div>
</div>
</div>
<div>
<form onsubmit="verify()">
Enter your time: <input type="text" id="inbox" placeholder="12:00">
<input type="submit" value="Submit">
</form>
</div>
<footer>©mukherj</footer>
</body>
</html>
它实际上应该旋转。但是它又回到了原来的位置
答案 0 :(得分:0)
您正在通过submit
按钮使用form
的{{1}}事件。您应该使用submit
的{{1}}事件,因为您没有在任何地方提交任何表单数据。实际上,因此,您甚至不需要click
标记。
button
form
let ibox=document.getElementById("inbox");
let pattern=/^(1[0-2]|0?[1-9]):([0-5]?[0-9])/;
let form = document.querySelector("form");
let bh = document.querySelector(".bighand");
let sh = document.querySelector(".smallhand");
const verify=() =>{
pattern.test(ibox.value)?setTime():invalidEntry();
};
const setTime = ()=>{
bh.style.transform = "rotate(180deg)";
sh.style.transform = "rotate(90deg)";
//alert("We have set your time");
}
const invalidEntry=()=>{
alert("Please enter a valid time and format. Example 3:45");
}