javascript实现倒计时提示框
作者:友人CWH 时间:2024-04-22 22:30:35
本文实例为大家分享了javascript实现倒计时提示框的具体代码,供大家参考,具体内容如下
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>全屏提示框</title>
<style>
#button{
width: 150px;
height: 50px;
background-color: greenyellow;
}
.fullScreenDiv{/* 全屏div */
display: none;
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
}
.promptDiv{/* 提示框div */
display: none;
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
width: 30%;
height: 30%;
border-radius: 20px;
background-color:white;
text-align: center;
}
.close{
height: 34px;
line-height: 34px;
margin: 0px;
text-align: right;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
background-color: cornflowerblue
}
.X{
padding: 2px 6px;
margin-right: 8px;
color: white;
cursor: pointer;
}
.countDown{/*倒计时关闭提示框*/
color: red;
font-size: 28px;
}
</style>
<script>
window.onload=function(){
document.getElementById("button").addEventListener("click",function(){
document.getElementsByClassName("fullScreenDiv")[0].style.display="block";
document.getElementsByClassName("promptDiv")[0].style.display="block";
for(var i=5;i>=0;i--){
(function(i){
setTimeout(function(){
var j=Math.abs(i-5);//如果i为0,那么被定时0s,则要输出abs(0-5)=5 ,如果i为5,那么被定时5s,则要输出abs(i-5)=0
if(j==0){
document.getElementsByClassName("fullScreenDiv")[0].style.display="none";
document.getElementsByClassName("promptDiv")[0].style.display="none";
}else{
document.getElementsByClassName("countDown")[0].innerHTML=j;
}
},i*1000);//每次间隔时间为1s
})(i);
}
});
document.getElementsByClassName("X")[0].addEventListener("click",function(){
document.getElementsByClassName("fullScreenDiv")[0].style.display="none";
document.getElementsByClassName("promptDiv")[0].style.display="none";
});
}
</script>
</head>
<body>
<div>
<button id="button">打开全屏提示框</button>
</div>
<div class="fullScreenDiv">
<div class="promptDiv">
<h4 class="close"><span class="X">X</span></h4>
<p>我是全屏提示框我是全屏提示框我是全屏提示框</p>
<p>倒计时关闭</p>
<span class="countDown">5</span>
</div>
</div>
</body>
</html>
来源:https://blog.csdn.net/CWH0908/article/details/89736836
标签:js,倒计时,提示框
0
投稿
猜你喜欢
Python 对输入的数字进行排序的方法
2022-11-10 13:11:36
第一类工厂与哈希对象
2009-12-28 13:14:00
浅析python 中大括号中括号小括号的区分
2021-06-15 15:14:16
uni-app网络请求、数据缓存实例详解
2023-08-09 03:49:12
Python socket网络编程TCP/IP服务器与客户端通信
2023-09-13 01:46:02
XHTML1.0与HTML兼容指引16条[译]
2009-06-10 14:45:00
pytorch-神经网络拟合曲线实例
2022-03-17 18:17:30
Python桌面文件清理脚本分享
2022-10-11 03:13:23
PHP 中文处理技巧
2024-05-11 09:45:09
mysql中group by与having合用注意事项分享
2024-01-15 02:24:55
python自动发送邮件脚本
2023-01-24 07:56:28
asp实现页面延迟运行的两个简单方法
2007-10-16 13:49:00
DBA_2PC_PENDING 介绍
2009-02-28 10:59:00
Python实现批量导入1000条xlsx数据
2021-01-11 05:55:47
MySQL建立唯一索引实现插入重复自动更新
2024-01-12 13:46:36
宝塔部署django项目的实现步骤(图文教程)
2021-09-01 00:25:27
Java实现学生信息管理系统(使用数据库)
2024-01-25 11:22:03
对比MySQL中int、char以及varchar的性能
2024-01-22 13:17:52
kettle 入门使用教程(最新版)
2023-04-12 21:28:12
关于TensorFlow新旧版本函数接口变化详解
2022-12-29 19:00:21