html浮动提⽰框功能的实现代码
⼀般的表单提⽰总会占据表单的位置,让表单边长,或者变宽,影响布局,但如果让提⽰框像对话框⼀样浮在所需内容旁边就可以解决这⼀问题。
HTML及样式
⾸先做⼀张表单
<div id="form-block">
<h1>注册</h1>
<form id="form-form" class="center-block">
<div>
<input id="email" class="form-control" placeholder="电⼦邮箱">
</div>
<div>
<input id="vrf" class="form-control" placeholder="验证码">
</form>
</div>
</div>
然后我们需要设计⼀下对话框
⼤概就是这样,由⼀个三⾓形和矩形组成。
#tips{
padding-top: 6px;
z-index: 9999;
/*让对话置顶以免被其他元素遮挡*/
position: fixed;
width: 1000px;
}
#form-tips{
background-color: black;
color: #ffffff;
padding: 0 6px;
position: absolute;
}
#triangle{
border:10px solid;
border-color: transparent black transparent transparent;
}
<div id="alter">
<label id="triangle"></label>
<label id="form-alert">这是⼀个提⽰</label>
</div>
三⾓形怎么来的?参考这篇经验
js实现浮动
页⾯已经做好了,现在我们需要⼀个函数来改变对话框的内容和位置。
const TIPS = ElementById("tips");
//msg是提⽰信息,obj是需要提⽰的元素
function showTips(msg, obj) {
TIPS.style.display = "block";//显⽰隐藏的对话框
var domRect = BoundingClientRect();//获取元素的位置信息
var width = domRect.x+obj.clientWidth; //显⽰在元素后⾯,所以加上元素的宽
var height = domRect.y;
p = height+"px";
TIPS.style.left = width+"px";
TIPS.style.display = "none";//元素失焦时隐藏对话框
//这⾥由于我是⽤在表格,所以使⽤了失焦,根据需要修改
};
showTips(msg, obj);//当窗⼝改变⼤⼩时重新计算对话框位置
}
}
效果图
完整代码d
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="../static/css/bootstrap.css">
<style>
body,html{
background-color: #70a1ff;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body *{
transition-duration: 500ms;
}
#form-block{
text-align: center;
position: absolute;
top: 50%;
left: 50%;
width: 500px;
height: 200px;
background-color: #f1f2f6;
transform: translateY(-50%) translateX(-50%);
box-shadow: 0 0 10px #000000;
}
#form-form{
width: 70%;
}
#form-form > *{
margin: 10px;
}
#email-warning{
display: none;
}
#tips{
padding-top: 6px; ds
z-index: 9999;
position: fixed;
width: 1000px;
}
#form-tips{
background-color: black;
color: #ffffff;
padding: 0 6px;
position: absolute;
}
#triangle{
border:10px solid;
border-color: transparent black transparent transparent;
}
</style>
</head>
<body>
<div id="tips">
<label id="triangle"></label>
<label id="form-tips">这是⼀个提⽰</label>
</div>
<div id="form-block">
<h1>注册</h1>
<form id="form-form" class="center-block">
<div>
<input onfocus="showTips('电⼦邮箱的提⽰',this)" id="email" class="form-control" placeholder="电⼦邮箱">
<div id="email-warning" class="label-warning">请输⼊正确的邮箱地址!</div>
html矩形框代码怎么写</div>
<div>
<input onfocus="showTips('测试⽂字', this)" id="vrf" class="form-control" placeholder="验证码">
<div id="vrf-warning" class="label-warning hidden">请输⼊正确的邮箱地址!</div>
</div>
</form>
</div>
<!-- <button οnclick="changeFormHeight('500')">测试</button>-->
<script>
const TIPS = ElementById("tips");
function showTips(msg, obj) {
TIPS.style.display = "block";
var domRect = BoundingClientRect();
var width = domRect.x+obj.clientWidth;
var height = domRect.y;
p = height+"px";
TIPS.style.left = width+"px";
TIPS.style.display = "none";
};
showTips(msg, obj);
}
}
</script>
</body>
</html>
总结
以上所述是⼩编给⼤家介绍的html浮动提⽰框功能的实现代码,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
如果你觉得本⽂对你有帮助,欢迎转载,烦请注明出处,谢谢!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论