ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

值得把玩的各色CSS气泡!【精通CSS100例】

2021-10-20 17:06:49  阅读:317  来源: 互联网

标签:box right bubble height CSS100 把玩 position border CSS


最简单的三角气泡

image-20211020142441253

实现思路:

使用一个::before和::after,对两个设置边框,最后边框的效果就是三角形,一个三角形的边框颜色div一致,两一个则是白色,整好覆盖在上方。

代码

      .bubble-box {
        position: relative;
        border: 2px solid #409eff;
        border-radius: 5px;
        width: 200px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        
      }
      .bubble-box::before {
        position: absolute;
        right: 100%;
        top: 50%;
        margin: -5px 0 0px;
        border: 10px solid transparent;
        border-right-color: #409eff;
        content: "";
      }
      .bubble-box::after {
        position: absolute;
        right: 100%;
        top: 50%;
        margin-top: -3px;
        border: 8px solid transparent;
        border-right-color: #fff;
        content: "";
      }

斜三角形气泡

image-20211020143645511

实现逻辑

还是使用::after,使用它制作一个直角三角形image-20211020143823705

然后使用transform进行角度的倾斜达到效果。


  .bubble-box {
        position: relative;
        border: 2px solid #409eff;
        border-radius: 5px;
        width: 200px;
        height: 50px;
        line-height: 50px;
        text-align: center;
      }
      .bubble-box::after {
        content: "";
        position: absolute;
        border:10px solid transparent;
        border-top-color: #409eff;
        border-right-color: #409eff;
        right: 100%;
        top: 10%;
        transform: skewY(10deg);
      }

拖尾气泡

image-20211020145650545

实现思路

仔细观察图片:首先可以看到右下角的拖尾是有弧度的,在CSS中最简单实现弧度的方法:

就是对元素的圆角进行操作,只需要对两条边同时操作,即可产生效果。

border-bottom-left-radius: 15px 15px;

image-20211020150134842

然后的话,拖尾是比较小的,并没有图示的大,这个时候再简单的方法,就是在上面加一层白色的div,覆盖掉其中的一部分。


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      .bubble-box {
        position: relative;
        text-align: center;
        width: 200px;
        height: 50px;
        line-height: 50px;
        background-color: #409eff;
        border-radius: 25px;
        
      }
      .bubble-box::before {
            content: "";
            position: absolute;
            z-index: -1;
            bottom: -2px;
            right: -8px;
            height: 20px;
            border-right: 20px solid #409eff;
            border-bottom-left-radius: 15px 15px;
            -webkit-transform: translate(0, -2px);
      }
      .bubble-box::after {
        content: "";
        position: absolute;
        z-index: 1;
        bottom: -2px;
        right: -56px;
        width: 26px;
        height: 20px;
        background: white;
        border-bottom-left-radius: 10px;
        -webkit-transform: translate(-30px, -2px);
      }
    </style>
  </head>
  <body style="padding: 100px">
    <div class="bubble-box">picker</div>
  </body>
</html>

标签:box,right,bubble,height,CSS100,把玩,position,border,CSS
来源: https://blog.csdn.net/shangyanaf/article/details/120870009

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有