感谢您的支持,我会继续努力的!
打开微信扫一扫,即可进行扫码打赏哦
点我查看本站打赏源码!
Powered by RUNCODEX.COM,学的不仅是技术,更是梦想!!!
<h2>提示信息</h2>
<p>点击 "x" 关闭提示框。</p>
<div class="alert">
<span class="closebtn">×</span>
<strong>危险!</strong> 危险操作提示。
</div>
<div class="alert success">
<strong>成功!</strong> 操作成功提示。
<div class="alert info">
<strong>提示!</strong> 提示信息修改等。
<div class="alert warning">
<strong>警告!</strong> 提示当前操作要注意。
xxxxxxxxxx
var close = document.getElementsByClassName("closebtn");
var i;
for (i = 0; i < close.length; i++) {
close[i].onclick = function(){
var div = this.parentElement;
div.style.opacity = "0";
setTimeout(function(){ div.style.display = "none"; }, 600);
}
.alert {
padding: 20px;
background-color: #f44336;
color: white;
opacity: 1;
transition: opacity 0.6s;
margin-bottom: 15px;
.alert.success {background-color: #4CAF50;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}
.closebtn {
margin-left: 15px;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
.closebtn:hover {
color: black;