美文网首页
气泡效果

气泡效果

作者: 小哼唧麻 | 来源:发表于2021-11-01 14:03 被阅读0次

效果

image.png

代码

<div
     v-for="(item, index) in list"
     :key="index"
     class="normal"
     :class="{
         'active': index === activeIndex,
      }"
      @tap="onTap(index)"
>
</div>
data() {
    return {
        list: [
             {
                  title: 'list1'
             },
             {
                  title: 'list2'
             }],
         activeIndex: 0
     };
},
methods: {
        /**
         * 切换气泡
         *
         * @param {number} index 选中的索引
         */
        onTapSku(index) {
            this.activeIndex = index;
        }
    }
};
 .normal {
      width: 48.78%;
      height: .97rem;
      padding: .12rem 0 .12rem .12rem;
      margin-bottom: .16rem;
      border-radius: .09rem;
      background: #fff;
      border: .01rem solid #f1f1f1;
      box-sizing: border-box;
}
.active {
      background: #f3feff;
      border: .016rem solid #00c8c8;
      position: relative;

      &::after {
           position: absolute;
           width: 0;
           height: 0;
           content: "\00a0";
           display: block;
           /** 用border画等腰三角形 **/
           border-style: solid;
           border-width: .07rem;
           border-color:#00c8c8 transparent transparent transparent;
           left: 50%;
           bottom: -0.15rem;
     }
}

相关文章

  • 气泡效果

    效果 代码

  • css气泡效果

    最近移动端项目需要实现像微信语音一样的样式框,如上图所示,查找了一些资料发现实现起来蛮简单的,特意记录下.html...

  • iOS气泡效果(swift3)

    之前这个红色气泡大小是512*512的,被我改成了50*50。气泡原图特别大,而需要被气泡效果的图片比它小,则会出...

  • 自定义View之双层波纹气泡(xFermode)

    效果图 今天给大家带来的是双层波纹气泡效果,有请图片: 实现思路 1.首先计算自定义view的真实宽高和气泡的直径...

  • iOS 自定义图片 聊天气泡制作

    实现图片拉伸,两边,上下,以及尖角不会变形,实现图片气泡聊天的效果 //气泡对话 +(UIImage*)resiz...

  • 第二天:双重气泡图+树状图

    1 第二天,讲双重气泡图和树状图。 双重气泡图,容易理解,效果挺好; 树状图难一些,效果稍微差一点,特别是如何分类...

  • 聊天气泡拉伸效果

    Demo传送门

  • Android超简单气泡效果

    阿里P7移动互联网架构师进阶视频(每日更新中)免费学习请点击:https://space.bilibili.com...

  • PS制作透明气泡效果

    我们先来看看展示的效果图 系统:WIN10 设备:Photoshop CS6 STEP 1 首先,新建一个400*...

  • PS制作球体气泡效果

    1.打开一张风景图,Ctrl + J复制一层,Ctrl + T进行缩小; 2.打造气体效果。利用椭圆选择工具,在图...

网友评论

      本文标题:气泡效果

      本文链接:https://www.haomeiwen.com/subject/oumbaltx.html