jquery提示框

下拉提示框
function pointOut(errorData){
	$("body").append("<div class='pointOut'>"+errorData+"</div>");
	$(".pointOut").animate(
		{
			top:"2px"
		}
	,200,function(){
		setTimeout(function(){
			$(".pointOut").animate({
				opacity:0
			},400,function(){
				$(".pointOut").remove()
			})
		},2500)
		
	})
}
pointOut("提示")
.pointOut{
	background-color: red;
	color: white;
	text-align: center;
	padding: 5px;
	width: 98%;
	border-radius: 6px;
	display: inline-block;
	position: fixed;
	z-index: 9999;
	top: -25px;
	left: 1%;
	font-size: 30px;
}
中间提示框
var promptHint=new Function;
promptHint.prototype.fun=function(parameter){
	var str=parameter.str;	
	var strDom='<div class="promptHint" style="position: fixed;width: 100%;height: 100%;top: 0;z-index: 9999;touch-action: none;">'+
				'<div class="hint_bg" style="position: absolute;top: 0;width: 100%;height: 100%;background-color: #000000;opacity: 0.4;"></div>'+
				'<div class="hint_cont" style="position: absolute;top: 50%;left:50%;margin:-40px 0 0 -60px;padding: 30px;background-color: white;border-radius: 12px;z-index: 9;">'+str+'</div>'+
			'</div>'
	$("body").append(strDom);
	var hint_contLeft=$(".hint_cont").width();
	$(".hint_cont").css("margin-left","-"+(hint_contLeft/2)+"px");
	$(document).on("tap",".promptHint",function(e){
		e.preventDefault();
		e.stopPropagation();
	})
	
	
}
promptHint.prototype.clear=function(){
	$(".promptHint").remove();
}
var promptCue=new promptHint();
promptCue.fun({
		str:"请稍等..."
});
setTimeout(()=>{
	promptCue.clear();
},1000)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值