想要一个这样的提示框,用户点击按钮时,就给他一个提示:
同时要求,
不管点击哪里的按钮,提示语一定要在可视区的正中间位置。
重复点击同一个按钮,提示语相同,且提示弹框不凌乱、不重叠。
而且 切换点击按钮时,要实时显示新的提示语,并且不显示旧的提示语。
以web端为例:
在页面的最外层包裹层里添加提示的样式:
.toast {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 300px;
padding: 2px 10px;
box-sizing: border-box;
border-radius: 4px;
font-size: 16px;
color: #fff;
background-color: rgba(0, 0, 0, .8);
pointer-events: none;
text-align: center;
z-index: 9999;
}
添加js方法:
这里的.show_toast
就是页面最外层包裹层的类名。
function showToast(text) {
// 先检查原来有没有toast动画被添加
// 如果有,就立即结束动画 清空队列并移除盒子
var _toast = $('.toast');
_toast.stop(true, true).remove();
// 添加新提示盒子
var _div = $('<div class="toast"></div>');
_div.appendTo($('.show_wrap'));
_div.text(text);
setTimeout(function() {
_div.fadeOut(300, function() {
$(this).remove();
});
}, 2000)
}
写个demo测试一下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
padding: 0;
margin: 0;
}
.hide {
display: none!important;
}
.show_wrap {
position: relative;
width: 500px;
height: 500px;
background-color: pink;
}
.toast {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 300px;
padding: 2px 10px;
box-sizing: border-box;
border-radius: 4px;
font-size: 16px;
color: #fff;
background-color: rgba(0, 0, 0, .8);
pointer-events: none;
z-index: 9999;
}
</style>
</head>
<body>
<div class="show_wrap"></div>
<button class="btn1">click 1</button>
<button class="btn2">click 2</button>
</div>
<script src="./jquery 3.6.0.js"></script>
<script>
function showToast(text) {
// 先检查原来有没有toast动画被添加
// 如果有,就立即结束动画 清空队列并移除盒子
var _toast = $('.toast');
_toast.stop(true, true).remove();
// 添加新提示盒子
var _div = $('<div class="toast"></div>');
_div.appendTo($('.show_wrap'));
_div.text(text);
setTimeout(function() {
_div.fadeOut(300, function() {
$(this).remove();
});
}, 2000)
}
$('.btn1').on('click', function() {
showToast('111 这里有20多个字 这里有20多个字 这里有20多个字 这里有20多个字 这里有20多个字');
})
$('.btn2').on('click', function() {
showToast('hello 点击了222');
})
</script>
</body>
</html>
不管怎么点击按钮,提示都是正常的。
该方法用到线上项目,提示正常。 简单、实用。
再介绍一个jq的提示语插件:
toastr
用起来非常简单,直接贴链接吧,感兴趣可以拿走用:
https://www.jq22.com/jquery-info476
jq确实用的不多了,现在流行用框架进行开发。不过像我一样的切图仔、页面仔、老项目维护仔们,绝大多数还在用jq进行开发。 所以,用还是要会用的。