- css实现小气泡样式:
border-color: #fff transparent transparent;
transparent表示透明,第一个代表上三角,第二个代表左右三角,第三个代表下三角
<!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>
.search{
position: relative;
width: 178px;
margin: 100px;
}
.content{
display: none;
position: absolute;
top: -40px;
width: 171px;
border: 1px solid rgba(0,0,0,.2);
box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
padding: 5px 0;
font-size: 18px;
line-height: 20px;
color: #333;
}
.content::before{
content: '';
width: 0;
height: 0;
position: absolute;
top: 28px;
left: 18px;
border: 8px solid #000;
border-style: solid dashed dashed;
border-color: #fff transparent transparent;
}
</style>
</head>
<body>
<div class="search">
<div class="content">123</div>
<input type="text" placeholder="请输入快递单号" class="parcel"></input>
</div>
<script>
var cont=document.querySelector('.content')
var parcel=document.querySelector('.parcel')
parcel.addEventListener('keyup',function(e){
if(this.value == ''){
cont.style.display='none'
}else{
cont.style.display='block'
cont.innerText = this.value
}
})
parcel.addEventListener('focus',function(e){
if(parcel.value !== ''){
cont.style.display='block'
}
})
parcel.addEventListener('blur',function(e){
cont.style.display='none'
})
</script>
</body>
</html>