demo地址:http://xueduany.github.com/KitJs/KitJs/index.html#bubble
號(hào)外:kitjs官方討論QQ群建立了,QQ群號(hào)88093625,歡迎大家加入,討論前端相關(guān)話題
最近做手機(jī)項(xiàng)目時(shí)候,需要實(shí)現(xiàn)一個(gè)類似iphone SMS效果的氣泡效果。
這里分享下實(shí)現(xiàn)心得,
首先分析下iphone的氣泡效果有一下特點(diǎn)
1. 圓角
2. 向下的外陰影
3. 上邊和下邊的內(nèi)陰影
4. 上邊內(nèi)的一個(gè)內(nèi)嵌的玻璃氣泡的反光效果
首先定義一個(gè)容器,盒模型為display: inline-block,方便自適應(yīng)文字大小
.bubble {
position: relative;
display: inline-block;
min-width: 30px;
max-width: 200px;
word-break: break-all;
word-wrap: break-word;
min-height: 22px;
background: #d2d2d2;
border-radius: 15px;
margin-bottom: 20px;
padding: 6px 8px;
-webkit-box-shadow: 0px 1px 2px #000, inset 0px 4px 4px rgba(0,0,0,.3), inset 0px -4px 4px rgba(255,255,255,.5);
-moz-shadow: 0px 1px 2px #000, inset 0px 4px 4px rgba(0,0,0,.3), inset 0px -4px 4px rgba(255,255,255,.5);
box-shadow: 0px 1px 2px #000, inset 0px 4px 4px rgba(0,0,0,.3), inset 0px -4px 4px rgba(255,255,255,.5);
}
設(shè)置斷詞,避免文字過(guò)長(zhǎng),撐開(kāi)容器,同時(shí)設(shè)置最小寬度,最大寬度
設(shè)置圓角,border-radius
設(shè)置box-shadow: 0px 1px 2px #000實(shí)現(xiàn)氣泡的外陰影
inset 0px 4px 4px rgba(0,0,0,.3)為上邊框內(nèi)陰影
inset 0px -4px 4px rgba(255,255,255,.5)為下邊框的內(nèi)陰影
接下來(lái),我們需要實(shí)現(xiàn)最后一個(gè)效果內(nèi)嵌玻璃氣泡的反光效果
.bubble .content {
position: relative;
padding: 0 4px;
}
.bubble .content:before {
content: '';
position: absolute;
margin: auto;
top: -5px;
left: 0;
width: 100%;
height: 12px;
background-image: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.2) 90%, rgba(255,255,255,0) 90% );
background-image: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.2) 90%, rgba(255,255,255,0) 90% );
border-radius: 10px
}
在氣泡內(nèi)嵌一個(gè)顯示內(nèi)容的block,使用block的before偽元素,實(shí)現(xiàn)一個(gè)圓角的漸變氣泡
background-image: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.2) 90%, rgba(255,255,255,0) 90% );
最后,通過(guò)氣泡的before和after偽元素,實(shí)現(xiàn)三角
.bubble:before {
content: '';
display: block;
font-size: 0;
width: 0;
height: 0;
border-width: 6px;
position: absolute;
bottom: -12px;
left: 12px;
border-color: #4a4c50 transparent transparent #4a4c50;
border-style: solid dashed dashed solid;
}
.bubble:after {
content: '';
display: block;
font-size: 0;
position: absolute;
bottom: -9px;
left: 13px;
width: 0;
height: 0;
border-width: 5px;
border-color: #e8e8e8 transparent transparent #e8e8e8;
border-style: solid dashed dashed solid;
}
最終效果圖:
聯(lián)系客服