vue 實(shí)現(xiàn)詞云(組件)

無需依賴第三方庫
原文地址:https://github.com/kongkong99/sample-reels/blob/master/src/views/3D-wordCloud/index.vue
基于源代碼做了修改瑰谜,可以直接復(fù)制到組件中使用

4psdx-gi6uk.gif

<template>
  <div>
    <div
      class="wordCloud__tagBall"
      :style="{width:`${this.width}px`,height:`${this.height}px`}"
      @mouseenter="stop"
      @mouseleave="start"
    >
      <span
        class="wordCloud__tag"
        v-for="(item, index) of data"
        :key="index"
        :style="{color:color[index % color.length],...contentEle[index].style}"
        :title="item.name+item.value"
      >{{item.name}}</span>
    </div>
  </div>
</template>


<script>
export default {
  name: 'cloudWork',
  props: {
    width: {
      type: Number,
      default: 300
    },
    height: {
      type: Number,
      default: 300
    },
    // 測試數(shù)據(jù)
    data: {
      type: Array,
      default: () => [
        {
          name: '安氏一類',
          value: 30
        },
        {
          name: '安氏二類',
          value: 30
        },
        {
          name: '安氏三類',
          value: 30
        },
        {
          name: '安氏四類',
          value: 30
        },
        {
          name: '安氏五類',
          value: 30
        },
        {
          name: '安氏一類',
          value: 30
        },
        {
          name: '安氏二類',
          value: 30
        },
        {
          name: '安氏三類',
          value: 30
        },
        {
          name: '安氏四類',
          value: 30
        },
        {
          name: '安氏五類',
          value: 30
        },
        {
          name: '安氏一類',
          value: 30
        },
        {
          name: '安氏二類',
          value: 30
        },
        {
          name: '安氏三類',
          value: 30
        },
        {
          name: '安氏四類',
          value: 30
        },
        {
          name: '安氏五類',
          value: 30
        }
      ]
    }
  },
  data: () => ({
    color: ['#2D4DB6', '#04B67C', '#D1AF07', '#E27914', '#CB4A4D', '#B02690'],
    contentEle: [],
    direction: '-1',
    speed: 400,
    animateID: null
  }),
  created() {
    this.contentEle = this.data.map(() => ({
      x: 0,
      y: 0,
      z: 0,
      style: {}
    }));
  },
  mounted() {
    this.innit();
  },
  methods: {
    innit() {
      const RADIUSX = (this.width - 50) / 2;
      const RADIUSY = (this.height - 50) / 2;
      this.contentEle = [];
      for (let i = 0; i < this.data.length; i += 1) {
        const k = -1 + (2 * (i + 1) - 1) / this.data.length;
        const a = Math.acos(k);
        const b = a * Math.sqrt(this.data.length * Math.PI);
        const x = RADIUSX * Math.sin(a) * Math.cos(b);
        const y = RADIUSY * Math.sin(a) * Math.sin(b);
        const z = RADIUSX * Math.cos(a);
        const singleEle = {
          x,
          y,
          z,
          style: {}
        };
        this.contentEle.push(singleEle);
      }
      this.animate();
    },
    animate() {
      this.rotateX();
      this.rotateY();
      this.move();
      this.animateID = window.requestAnimationFrame(this.animate);
    },
    rotateX() {
      const angleX = ['-1', '1'].includes(this.direction)
        ? Math.PI / Infinity
        : Math.PI / ((Number(this.direction) / 2) * Number(this.speed));
      const cos = Math.cos(angleX);
      const sin = Math.sin(angleX);

      this.contentEle = this.contentEle.map((t) => {
        const y1 = t.y * cos - t.z * sin;
        const z1 = t.z * cos + t.y * sin;
        return {
          ...t,
          y: y1,
          z: z1
        };
      });
    },
    rotateY() {
      const angleY = ['-2', '2'].includes(this.direction)
        ? Math.PI / Infinity
        : Math.PI / (Number(this.direction) * Number(this.speed));
      const cos = Math.cos(angleY);
      const sin = Math.sin(angleY);
      this.contentEle = this.contentEle.map((t) => {
        const x1 = t.x * cos - t.z * sin;
        const z1 = t.z * cos + t.x * sin;
        return {
          ...t,
          x: x1,
          z: z1
        };
      });
    },
    move() {
      const CX = this.width / 2;
      const CY = this.height / 2;
      this.contentEle = this.contentEle.map((singleEle) => {
        const { x, y, z } = singleEle;
        const fallLength = 500;
        const RADIUS = (this.width - 50) / 2;
        const scale = fallLength / (fallLength - z);
        const alpha = (z + RADIUS) / (2 * RADIUS);
        const left = `${x + CX - 15}px`;
        const top = `${y + CY - 15}px`;
        const transform = `translate(${left}, ${top}) scale(${scale})`;
        const style = {
          ...singleEle.style,
          opacity: alpha + 0.5,
          zIndex: parseInt(scale * 100, 10),
          transform
        };
        return {
          x,
          y,
          z,
          style
        };
      });
    },
    // 鼠標(biāo)移入暫停
    stop() {
      window.cancelAnimationFrame(this.animateID);
    },
    // 鼠標(biāo)離開恢復(fù)
    start() {
      this.animate();
    }
  }
};
</script>


<style  scoped>
button {
  margin: 20px;
}
.wordCloud__tagBall {
  margin: 50px auto;
  position: relative;
}

.wordCloud__tag {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  color: green;
  text-decoration: none;
  font-size: 15px;
  font-family: '微軟雅黑';
  font-weight: bold;
}
.wordCloud__tag :hover {
  color: red;
}

.wordCloud__home {
  display: flex;
  justify-content: center;
}
</style>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市蛛芥,隨后出現(xiàn)的幾起案子仅淑,更是在濱河造成了極大的恐慌胸哥,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件庐船,死亡現(xiàn)場離奇詭異筐钟,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)李破,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進(jìn)店門嗤攻,熙熙樓的掌柜王于貴愁眉苦臉地迎上來诽俯,“玉大人,你說我怎么就攤上這事闯团。” “怎么了偷俭?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長口猜。 經(jīng)常有香客問我透揣,道長,這世上最難降的妖魔是什么辐真? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任侍咱,我火速辦了婚禮,結(jié)果婚禮上撩轰,老公的妹妹穿的比我還像新娘。我一直安慰自己偎箫,他們只是感情好皆串,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布恶复。 她就那樣靜靜地躺著寂玲,像睡著了一般。 火紅的嫁衣襯著肌膚如雪拓哟。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天,我揣著相機(jī)與錄音违诗,去河邊找鬼诸迟。 笑死,一個(gè)胖子當(dāng)著我的面吹牛阵苇,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播紊册,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼囊陡,長吁一口氣:“原來是場噩夢啊……” “哼掀亥!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起痢畜,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎吼拥,沒想到半個(gè)月后凿可,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體授账,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了屋确。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,569評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖刨啸,靈堂內(nèi)的尸體忽然破棺而出设联,到底是詐尸還是另有隱情,我是刑警寧澤换团,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響洒扎,放射性物質(zhì)發(fā)生泄漏衰絮。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一胡诗、第九天 我趴在偏房一處隱蔽的房頂上張望骇陈。 院中可真熱鬧瑰抵,春花似錦、人聲如沸婿崭。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽祟身。三九已至奥务,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間袜硫,已是汗流浹背氯葬。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留婉陷,地道東北人帚称。 一個(gè)月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像秽澳,于是被迫代替她去往敵國和親闯睹。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容