css冒泡效果,使用动画实现

javascript 复制代码
<template>
  <div class="center">
    <div class="top">
      <div v-for="(i, index) in list" :key="index" class="top-box">
        <div class="bubble-box">
          <img :src="i.img" alt="" />
          <div class="bubbles">
            <div
              class="bubble"
              v-for="item in 10"
              :key="item"
              :style="{
                backgroundColor: i.color,
                animationDelay: getRandom() * 2 + 's',
                left: getRandom() * 10 + '%',
              }"
            ></div>
          </div>
        </div>
        <div class="text">
          <div class="num" :style="{ color: i.numColor }">{{ i.num }}</div>
          <div>{{ i.name }}</div>
        </div>
      </div>
    </div>
    
  </div>
</template>

<script>
export default {
  data() {
    return {
      list: [
        {
          img: "/img/dataCockpit/center1.png",
          num: 1643,
          numColor: "#2AD9F2",
          name: "名称1",
          color: "#aef5da",
        },
        {
          img: "/img/dataCockpit/center2.png",
          num: 22,
          numColor: "#53EA8C",
          name: "名称2",
          color: "#9efcff",
        },
        {
          img: "/img/dataCockpit/center3.png",
          num: 311,
          numColor: "#ffae00",
          name: "名称3",
          color: "#f5e88a",
        },
      ],
    };
  },
  methods: {
    getRandom() {
      return (Math.floor(Math.random() * 10) * 100) / 100;
    },
  },
};
</script>
<style lang="scss" scoped>
.center {
  padding-top: 35px;
  box-sizing: border-box;
  height: 100%;
  .top {
    background-image: url(/img/dataCockpit/centerTop.png);
    width: 856px;
    height: 115px;
    margin-bottom: 34px;
    color: #ffffff;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    padding: 0 70px;
    padding-bottom: 36px;
    padding-right: 88px;
    box-sizing: border-box;
    background-size: 100% 100%;
    align-items: center;
    margin-top: 20px;

    &-box {
      // position: relative;
      // top: -20px;
      display: flex;
      img {
        width: 105px;
        // height: 66px;
      }
      .text {
        height: 100%;
        padding-left: 15px;
        padding-bottom: 10px;
        box-sizing: border-box;
        // position: relative;
        // top: -10px;
        .num {
          font-size: 36px;
          font-weight: bold;
        }
      }
    }
  }
  .map {
    background-image: url(/img/dataCockpit/map.png);
    width: 892px;
    height: 656px;
    background-size: contain;
    position: relative;

    
  }
}
@keyframes flying {
  0% {
    bottom: 15px;
    transform: translateX(0);
  }
  50% {
    transform: translateX(50%);
  }
  100% {
    bottom: 200px;
    transform: translateX(-50%);
  }
}
.bubble-box {
  position: relative;
}
.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  top: 0;
  left: 0;
}
.bubble {
  position: absolute;
  bottom: 0;
  background: #f1f1f1;
  border-radius: 50%;
  opacity: 0.5;
  animation: flying 14s infinite ease-in;
  width: 5px;
  height: 5px;
  filter: blur(1px);
}
</style>
相关推荐
佚先森22 分钟前
2024ARM网络验证 支持一键云注入引流弹窗注册机 一键脱壳APP加固搭建程序源码及教程
java·html
Myli_ing1 小时前
HTML的自动定义倒计时,这个配色存一下
前端·javascript·html
FØund4042 小时前
antd form.setFieldsValue问题总结
前端·react.js·typescript·html
酷酷的威朗普2 小时前
医院绩效考核系统
javascript·css·vue.js·typescript·node.js·echarts·html5
渊兮兮2 小时前
Vue3 + TypeScript +动画,实现动态登陆页面
前端·javascript·css·typescript·动画
一棵开花的树,枝芽无限靠近你2 小时前
【PPTist】添加PPT模版
前端·学习·编辑器·html
土豆湿3 小时前
拥抱极简主义前端开发:NoCss.js 引领无 CSS 编程潮流
开发语言·javascript·css
鸽鸽程序猿6 小时前
【前端】CSS
前端·css
学不会•8 小时前
css数据不固定情况下,循环加不同背景颜色
前端·javascript·html
猫爪笔记14 小时前
前端:HTML (学习笔记)【1】
前端·笔记·学习·html