聊天会话框气泡

Posted prospective-zkq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了聊天会话框气泡相关的知识,希望对你有一定的参考价值。

1.聊天会话框气泡的实现

我们将一个div的width、height、font-size设置为0,给它一个border-width值,border-color给定四种不同的颜色,此时我们会看到该div由四个三角形组成的,由此我们可以根据需要保留需要的三角形,其他三个三角形定义为透明transparent,最后使用定位。实现代码如下:

html

<div class="contain">
<div class="angle"></div>
</div>

CSS:

<style>
*{
padding:0;
margin: 0;
}
body{
background-color: #aaa;
}
.contain{
margin: 20px auto;
position: relative;
width: 200px;
height: 100px;
border: 1px solid #aaa;
background-color: #fff;
}
.angle {
width:0;
height:0;
font-size:0;
border:solid 10px;
border-color:transparent #fff transparent transparent;
position: absolute;
top: 30px;
left: -20px;
}
</style>
效果图:

     技术分享图片

 

 






























以上是关于聊天会话框气泡的主要内容,如果未能解决你的问题,请参考以下文章

请教仿微信聊天气泡效果 在ios中是怎么实现的

css 此css允许您从框元素创建一个箭头,以便为其提供聊天气泡效果。

小程序聊天会话组件

Qt显示Linux desktop natification气泡提示框

Swift 聊天气泡图片拉伸

iOS绘制聊天气泡