HTML怎么做类似QQ聊天气泡,h5实现QQ聊天气泡的实例介绍
這篇文章主要介紹了HTML5實現(xiàn)QQ聊天氣泡效果,用 HTML/CSS 做了個類似QQ的聊天氣泡,具有一定的參考價值,感興趣的小伙伴們可以參考一下
今天自己用 HTML/CSS 做了個類似QQ的聊天氣泡,以下是效果圖:
以下說下關(guān)鍵地方的樣式設(shè)置。然后貼出html和css代碼(不多)。
步驟1:布局
消息採用p float布局,每條消息用一個p標(biāo)簽包裹,里面再放兩個p分別用來包裹用戶圖標(biāo)和用戶消息內(nèi)容。左側(cè)消息,先清除浮動,然后設(shè)置 float:left。這樣用戶圖標(biāo)和消息內(nèi)容就能夠顯示在同一行了,當(dāng)中用戶圖標(biāo)在左邊,消息內(nèi)容緊鄰著用戶圖標(biāo)。
右側(cè)消息,相同先清除浮動。然后設(shè)置 float:right,這樣用戶圖標(biāo)和消息顯示在同一行了。當(dāng)中圖標(biāo)在最右邊。圖標(biāo)左側(cè)是消息。
步驟2:設(shè)置圓角矩形border-radius:7px;
步驟3:三角形箭頭
&n
將p的寬度和高度設(shè)置為0,設(shè)置邊框?qū)挾?#xff0c;能夠使其表現(xiàn)出一個由四個三角形組成的矩形,每一個三角形的顏色和大小能夠通過設(shè)置border寬度和顏色設(shè)置。
這里將當(dāng)中三個三角形顏色設(shè)置為透明。僅僅留下一個三角形可見。
.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;
}
關(guān)鍵點4:三角形尾隨矩形框
使用相對定位。能夠使三角形始終固定在矩形框的邊上。
position:relative;
所有代碼:
/* bubble style */
.sender{
clear:both;
}
.sender p:nth-of-type(1){
float: left;
}
.sender p:nth-of-type(2){
background-color: aquamarine;
float: left;
margin: 0 20px 10px 15px;
padding: 10px 10px 10px 0px;
border-radius:7px;
}
.receiver p:first-child img,
.sender p:first-child img{
width:50px;
height: 50px;
}
.receiver{
clear:both;
}
.receiver p:nth-child(1){
float: right;
}
.receiver p: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;
}
hello, man!
hello world
總結(jié)
以上是生活随笔為你收集整理的HTML怎么做类似QQ聊天气泡,h5实现QQ聊天气泡的实例介绍的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 微信如何提现免手续费?
- 下一篇: html引用单文件组件,vue之单文件组