时间:2021-05-08
今天自己用 HTML/CSS 做了个类似QQ的聊天气泡,以下是效果图:
以下说下关键地方的样式设置。然后贴出html和css代码(不多)。
步骤1:布局
消息採用div+float布局,每条消息用一个DIV标签包裹,里面再放两个DIV分别用来包裹用户图标和用户消息内容。左側消息,先清除浮动,然后设置 float:left。这样用户图标和消息内容就能够显示在同一行了,当中用户图标在左边,消息内容紧邻着用户图标。
右側消息,相同先清除浮动。然后设置 float:right,这样用户图标和消息显示在同一行了。当中图标在最右边。图标左側是消息。
步骤2:设置圆角矩形
border-radius:7px;步骤3:三角形箭头
&n
将DIV的宽度和高度设置为0,设置边框宽度,能够使其表现出一个由四个三角形组成的矩形,每一个三角形的颜色和大小能够通过设置border宽度和颜色设置。
这里将当中三个三角形颜色设置为透明。仅仅留下一个三角形可见。
.triangle{ width: 0px; height: 0px; border-width: 15px; border-style: solid; border-color: red blue green gold; } .triangle{ width: 0px; height: 0px; border-width: 15px; border-style: solid; border-color: transparent transparent transparent red; }关键点4:三角形尾随矩形框
使用相对定位。能够使三角形始终固定在矩形框的边上。
position:relative;所有代码:
<html><head><style> .sender{ clear:both; } .sender div:nth-of-type(1){ float: left; } .sender div:nth-of-type(2){ background-color: aquamarine; float: left; margin: 0 20px 10px 15px; padding: 10px 10px 10px 0px; border-radius:7px; } .receiver div:first-child img, .sender div:first-child img{ width:50px; height: 50px; } .receiver{ clear:both; } .receiver div:nth-child(1){ float: right; } .receiver div:nth-of-type(2){ float:right; background-color: gold; margin: 0 10px 10px 20px; padding: 10px 0px 10px 10px; border-radius:7px; } .left_triangle{ height:0px; width:0px; border-width:8px; border-style:solid; border-color:transparent aquamarine transparent transparent; position: relative; left:-16px; top:3px; } .right_triangle{ height:0px; width:0px; border-width:8px; border-style:solid; border-color:transparent transparent transparent gold; position: relative; right:-16px; top:3px; } </style></head><body><!-- Left --><div class="sender"> <div> <img src="chatTemplateExample2_files/cat.jpg"> </div> <div> <div class="left_triangle"></div> <span> hello, man! </span> </div> </div><!-- Right --> <div class="receiver"> <div> <img src="chatTemplateExample2_files/cat.jpg"> </div> <div> <div class="right_triangle"></div> <span> hello world </span> </div> </div> </body></html>以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
微信聊天气泡怎么设置?大家都有这样的一个疑问,手机QQ可以设置聊天气泡,那么微信能不能设置聊天气泡呢?微信的聊天气泡怎么设置呢?别担心小编为大家带来微信聊天气泡
以QQ8.4.8版本为例,qq黄钻不可以设置聊天气泡,因为黄钻是用来设置空间装扮的,设置聊天气泡只能是VIP或是svip。 QQ是腾讯QQ的简称,是一款基于I
陌陌设置个性聊天气泡教程。相信小伙伴们对“聊天气泡”这个名词不会感到陌生。那么,当我们成为陌陌会员之后,我们也可更换并设置个性聊天气泡哦
以qq8.4.8版本为例,qq聊天气泡免费有放飞心情、浪花朵朵、微笑河马、卡通口罩、口罩、终极防护、武汉加油等。带有免费字样的气泡就是免费气泡。 QQ(Ten
给大家带来的是HTML5仿手机微信聊天界面,截图效果如下:源代码如下:XML/HTMLCode复制内容到剪贴板HTML5模拟微信聊天界面/**重置标签默认样式*