代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.w{
display: block;
}
.w2{
background-color: #20a0ff;
width: 200px;
height: 200px;
margin-bottom: 50px;
animation-name: slide-in;
animation-duration: 1s;
animation-timing-function: ease-out;
animation-delay: 0s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
.w3{
background-color: #20a0ff;
width: 200px;
height: 200px;
margin-bottom: 50px;
animation-name: slide-out;
animation-duration: 1s;
animation-timing-function: ease-out;
animation-delay: 0s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes slide-in {
0% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slide-out {
0% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(30px);
}
}
</style>
</head>
<body>
<div class="w"></div>
<button id="btn">点我</button>
</body>
<script>
let element = document.querySelector(".w");
let btn = document.getElementById("btn")
let flag = true
btn.onclick = function () {
console.log("点我")
if (flag){
element.classList.remove("w3")
element.classList.add("w2")
flag=!flag
}else{
element.classList.remove("w2")
element.classList.add("w3")
flag=!flag
}
}
</script>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。