CSS_实现三角形和聊天气泡框

如何用css画出一个三角形

1、第一步

写一个正常的盒子模型,先给个正方形的div,便于观察,给div设置宽高和背景颜色

html 复制代码
<body>
    <div class="box"></div>
</body>
<style>
    .box {
         width: 100px;
         height: 100px;
         background-color: pink;
     }
</style>

2、第二步

便于观察,给div设置四个不同颜色的的边框border

html 复制代码
<style>
   .box {
        width: 100px;
        height: 100px;
        background-color: pink;
        border-left: 50px solid skyblue;
        border-right: 50px solid yellow;
        border-bottom: 50px solid yellowgreen;
        border-top: 50px solid violet;
    }
</style>

四种不同颜色的边框,已经可以看出来,四个边框差个尖尖就是三角形

3、第三步

把中间的div的宽高设置为0像素,即可得到四个等腰三角形

html 复制代码
<style>
   .box {
        width: 0px;
        height: 0px;
        background-color: pink;
        border-left: 50px solid skyblue;
        border-right: 50px solid yellow;
        border-bottom: 50px solid yellowgreen;
        border-top: 50px solid violet;
    }
</style>

4、第四步

我们需要哪一边的三角形,把另外三边的边框设置透明transparent即可

比如我现在需要上面的三角形,我就可以把左右下的边框设置透明,并且把div的背景色删掉或者注释掉

html 复制代码
<style>
    .box {
        width: 0px;
        height: 0px;
        /* background-color: pink; */
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-bottom: 50px solid transparent;
        border-top: 50px solid violet;
    }
</style>

聊天气泡实现

html 复制代码
<body>
    <div class="box"></div>
</body>
<style>
    .box {
        width: 200px;
        height: 100px;
        /*父级给相对定位,伪元素根据父级给绝对定位 */
        position: relative;
        background-color: violet;
        border-radius: 20px;
    }
    
    .box::after {
        content: '';
        width: 0px;
        height: 0px;
        border: 20px solid;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-top: 20px solid violet;
        /*给绝对定位,根据需求设置三角形的位置*/
        position: absolute;
        top: 100px;
        left: 50px;
    }
</style>

简单代码实现

html 复制代码
<div class="wrapper"></div>
<style>
	.wrapper {
		position: relative;
		width: 200px;
		height: 200px;
		margin: 50px auto;
		border-radius: 12px;
		background: #ffffff;
		filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
		padding: 20px;
	}
	.wrapper:before {
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		border: 10px solid transparent;
		border-bottom-color: #ffffff;
		top: -20px;
		left: 50px;
	}
</style>
相关推荐
2401_8827275711 分钟前
低代码配置式组态软件-BY组态
前端·后端·物联网·低代码·前端框架
NoneCoder14 分钟前
CSS系列(36)-- Containment详解
前端·css
anyup_前端梦工厂26 分钟前
初始 ShellJS:一个 Node.js 命令行工具集合
前端·javascript·node.js
5hand30 分钟前
Element-ui的使用教程 基于HBuilder X
前端·javascript·vue.js·elementui
GDAL1 小时前
vue3入门教程:ref能否完全替代reactive?
前端·javascript·vue.js
六卿1 小时前
react防止页面崩溃
前端·react.js·前端框架
z千鑫1 小时前
【前端】详解前端三大主流框架:React、Vue与Angular的比较与选择
前端·vue.js·react.js
m0_748256142 小时前
前端 MYTED单篇TED词汇学习功能优化
前端·学习
小白学前端6663 小时前
React Router 深入指南:从入门到进阶
前端·react.js·react
web130933203983 小时前
前端下载后端文件流,文件可以下载,但是打不开,显示“文件已损坏”的问题分析与解决方案
前端