标签云效果

产品要求,词云要实现动态滚动。查资料,改写效果。

echarts词云效果

在这里插入图片描述
传统的echarts-wordCloud不能满足需求。

标签云

换了标签云,以下是代码

<template>
  <div class="mx-auto" :style="{ width: width + 'px' }">
    <svg :width="width" :height="height" @mousemove="listener($event)">
      <a :href="tag.href" v-for="tag in tags" :key="tag.id">
        <text
          :x="tag.x"
          :y="tag.y"
          :font-size="18 * (600 / (600 - tag.z))"
          :fill-opacity="(400 + tag.z) / 600"
          :style="{ fill: tag.fill }"
        >
          {{ tag.text }}
        </text>
      </a>
    </svg>
  </div>
</template>

<script>
export default {
  props: {
    tagList: {
      type: Array,
      default: () => [],
    },
  },
  name: "tagCloud",
  data() {
    return {
      width: 800,
      height: 520,
      RADIUS: 230,
      speedX: Math.PI / 360,
      speedY: Math.PI / 360,
      tags: [],
    };
  },
  watch: {
    tagList: {
      handler(n, o) {
        this.init()
      },
      deep: true
    }
  },
  computed: {
    CX() {
      return this.width / 2.4;
    },
    CY() {
      return this.height / 2;
    },
  },
  created() {
  },
  mounted() {
    //使球开始旋转
    // const winWidth = document.documentElement.clientWidth || document.body.clientWidth;
    // this.width = winWidth * 0.8;
    // this.height = winWidth * (426 / 495);
    console.log(this.tagList);
    this.init();
    setInterval(() => {
      this.rotateX(this.speedX);
      this.rotateY(this.speedY);
    }, 18);
  },
  methods: {
    init() {
      let tags = [];
      for (let i = 0; i < this.tagList.length; i++) {
        let tag = {};
        let k = -1 + (2 * (i + 1) - 1) / this.tagList.length;
        let a = Math.acos(k);
        let b = a * Math.sqrt(this.tagList.length * Math.PI);
        tag.text = this.tagList[i].name;
        tag.x = this.CX + this.RADIUS * Math.sin(a) * Math.cos(b);
        tag.y = this.CY + this.RADIUS * Math.sin(a) * Math.sin(b);
        tag.z = this.RADIUS * Math.cos(a);
        tag.fill = this.getColor();
        // tag.href = '/knowledge-base/list/allMap?label=' + this.tagList[i].id;
        tags.push(tag);
      }
      this.tags = tags;
    },
    // 获取随机色
    getColor() {
      // let r = parseInt(Math.random() * 256);
      // let g = parseInt(Math.random() * 256);
      // let b = parseInt(Math.random() * 256);
      // return `rgba(${r},${g},${b},1)`;
      const colors = ['#2875B9','#2875B9','#2875B9'];
      const index = Math.floor(Math.random() * 3);
      return colors[index];
    },
    rotateX(angleX) {
      var cos = Math.cos(angleX);
      var sin = Math.sin(angleX);
      for (let tag of this.tags) {
        var y1 = (tag.y - this.CY) * cos - tag.z * sin + this.CY;
        var z1 = tag.z * cos + (tag.y - this.CY) * sin;
        tag.y = y1;
        tag.z = z1;
      }
    },
    rotateY(angleY) {
      var cos = Math.cos(angleY);
      var sin = Math.sin(angleY);
      for (let tag of this.tags) {
        var x1 = (tag.x - this.CX) * cos - tag.z * sin + this.CX;
        var z1 = tag.z * cos + (tag.x - this.CX) * sin;
        tag.x = x1;
        tag.z = z1;
      }
    },
    listener(event) {
      //响应鼠标移动
      var x = event.clientX - this.CX;
      var y = event.clientY - this.CY;
      this.speedX =
        x * 0.0001 > 0
          ? Math.min(this.RADIUS * 0.00002, x * 0.0001)
          : Math.max(-this.RADIUS * 0.00002, x * 0.0001);
      this.speedY =
        y * 0.0001 > 0
          ? Math.min(this.RADIUS * 0.00002, y * 0.0001)
          : Math.max(-this.RADIUS * 0.00002, y * 0.0001);
    },
  },
};
</script>

<style lang="less" scoped></style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

前端李易安

打赏1元鼓励作者

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值