巧用border特性实现聊天气泡效果

Posted

tags:

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

利用border特性,实现三角形,很简单,我们直接看效果:

技术分享

html:

<div class="bubble-container ">你好么
    <div class="bubble-tail"></div>
</div>

css:

.bubble-container {
            height: 100px;
            line-height: 100px;
            margin-bottom: 2em;
            padding-left: 2em;
            background: #3EC22D;
            position: relative;
            font-family: "微软雅黑";
            color: white;
            border-radius: 10px;
        }

        .bubble-container .bubble-tail {
            width: 0px;
            height: 0px;
            position: absolute;
            left: 50px;
            border-width: 15px;
            border-style: solid;
            border-color: #3EC22D transparent transparent transparent;
        }

 

以上是关于巧用border特性实现聊天气泡效果的主要内容,如果未能解决你的问题,请参考以下文章

巧用 CSS 实现动态线条 Loading 动画

使用QGraphicsView实现气泡聊天窗口+排雷

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

有啥第三方库可以方便的实现iOS的聊天气泡

DUILIB 实现微信气泡聊天效果

基于Qt的类QQ气泡聊天的界面开发