【前端特效】程式員給你的專屬告白,快來轉發給你心愛的那個她吧!

来源:https://www.cnblogs.com/mochenxiya/archive/2022/09/04/16654286.html
-Advertisement-
Play Games

【前端特效】程式員給你的專屬告白,快來轉發給你心愛的那個她吧! 點擊打開視頻講解更加詳細 <template> <div class="content"> <img src="../assets/live.gif" alt="" /> <section class="cloud-bed"> <div ...


【前端特效】程式員給你的專屬告白,快來轉發給你心愛的那個她吧!

點擊打開視頻講解更加詳細

在這裡插入圖片描述

<template>
  <div class="content">
    <img src="../assets/live.gif" alt="" />
    <section class="cloud-bed">
      <div class="cloud-box">
        <span
          v-for="(item, index) in dataList"
          :key="index"
          @click="getDataInfo(item)"
          :style="{ color: item.color, background: item.bgColor }"
        >
          {{ item.name }}
        </span>
      </div>
    </section>
  </div>
</template>
 
<script>
export default {
  name: "word-cloud",
  data() {
    return {
      timer: 50, // 球體轉動速率
      radius: 0, // 詞雲球體面積大小
      dtr: Math.PI / 180, //滑鼠滑過球體轉動速度
      active: false, // 預設載入是否開啟轉動
      lasta: 0, // 上下轉動
      lastb: 0.5, // 左右轉動
      distr: true,
      tspeed: 0, // 滑鼠移動上去時球體轉動
      mouseX: 0,
      mouseY: 0,
      tagAttrList: [],
      tagContent: null,
      cloudContent: null,
      sinA: "",
      cosA: "",
      sinB: "",
      cosB: "",
      sinC: "",
      cosC: "",
      dataList: [
        {
          name: "金晨",
          value: "1",
          bgColor: "rgb(57, 193, 207,0.12)",
          color: "#39c1cf",
        },
        {
          name: "昆凌",
          value: "8",
          bgColor: "rgb(66, 105, 245,0.12)",
          color: "#4269f5",
        },
        {
          name: "劉亦菲",
          value: "9",
          bgColor: "rgb(184, 107, 215,0.12)",
          color: "#b86bd7",
        },
        {
          name: "林志玲",
          value: "3",
          bgColor: "rgb(243, 84, 83,0.12)",
          color: "#f35453",
        },
        {
          name: "林心如",
          value: "6",
          bgColor: "rgb(250, 116, 20,0.12)",
          color: "#FA7414",
        },
        {
          name: "李沁",
          value: "10",
          bgColor: "rgb(255, 171, 30,0.12)",
          color: "#FFAB1E",
        },
        {
          name: "林依晨",
          value: "2",
          bgColor: "rgb(136, 104, 217,0.12)",
          color: "#8868D9",
        },
        {
          name: "李宇春",
          value: "5",
          bgColor: "rgb(42, 184, 230,0.12)",
          color: "#2AB8E6",
        },
        {
          name: "賈靜雯",
          value: "7",
          bgColor: "rgb(117, 133, 162,0.12)",
          color: "#7585A2",
        },
      ],
    };
  },
  mounted() {
    this.$nextTick(() => {
      this.radius = document.querySelector(".cloud-box").offsetWidth / 3;
      this.initWordCloud();
    });
  },
  beforeDestroy() {
    clearInterval(this.timer);
  },
  methods: {
    // 獲取點擊文本信息
    getDataInfo(item) {
      console.log(item, "item");
    },
    initWordCloud() {
      this.cloudContent = document.querySelector(".cloud-box");
      this.tagContent = this.cloudContent.getElementsByTagName("span");
      for (let i = 0; i < this.tagContent.length; i++) {
        let tagObj = {};
        tagObj.offsetWidth = this.tagContent[i].offsetWidth;
        tagObj.offsetHeight = this.tagContent[i].offsetHeight;
        this.tagAttrList.push(tagObj);
      }
      this.sineCosine(0, 0, 0);
      this.positionAll();
      this.cloudContent.onmouseover = () => {
        this.active = true;
      };
      this.cloudContent.onmouseout = () => {
        this.active = false;
      };
      this.cloudContent.onmousemove = (ev) => {
        let oEvent = window.event || ev;
        this.mouseX =
          oEvent.clientX -
          (this.cloudContent.offsetLeft + this.cloudContent.offsetWidth / 2);
        this.mouseY =
          oEvent.clientY -
          (this.cloudContent.offsetTop + this.cloudContent.offsetHeight / 2);
        this.mouseX /= 5;
        this.mouseY /= 5;
      };
      setInterval(this.update, this.timer);
    },
    positionAll() {
      let phi = 0;
      let theta = 0;
      let max = this.tagAttrList.length;
      let aTmp = [];
      let oFragment = document.createDocumentFragment();
      //隨機排序
      for (let i = 0; i < this.tagContent.length; i++) {
        aTmp.push(this.tagContent[i]);
      }
      aTmp.sort(() => {
        return Math.random() < 0.5 ? 1 : -1;
      });
      for (let i = 0; i < aTmp.length; i++) {
        oFragment.appendChild(aTmp[i]);
      }
      this.cloudContent.appendChild(oFragment);
      for (let i = 1; i < max + 1; i++) {
        if (this.distr) {
          phi = Math.acos(-1 + (2 * i - 1) / max);
          theta = Math.sqrt(max * Math.PI) * phi;
        } else {
          phi = Math.random() * Math.PI;
          theta = Math.random() * (2 * Math.PI);
        }
        //坐標變換
        this.tagAttrList[i - 1].cx =
          this.radius * Math.cos(theta) * Math.sin(phi);
        this.tagAttrList[i - 1].cy =
          this.radius * Math.sin(theta) * Math.sin(phi);
        this.tagAttrList[i - 1].cz = this.radius * Math.cos(phi);
        this.tagContent[i - 1].style.left =
          this.tagAttrList[i - 1].cx +
          this.cloudContent.offsetWidth / 2 -
          this.tagAttrList[i - 1].offsetWidth / 2 +
          "px";
        this.tagContent[i - 1].style.top =
          this.tagAttrList[i - 1].cy +
          this.cloudContent.offsetHeight / 2 -
          this.tagAttrList[i - 1].offsetHeight / 2 +
          "px";
      }
    },
    update() {
      let angleBasicA;
      let angleBasicB;

      if (this.active) {
        angleBasicA =
          (-Math.min(Math.max(-this.mouseY, -200), 200) / this.radius) *
          this.tspeed;
        angleBasicB =
          (Math.min(Math.max(-this.mouseX, -200), 200) / this.radius) *
          this.tspeed;
      } else {
        angleBasicA = this.lasta * 0.98;
        angleBasicB = this.lastb * 0.98;
      }

      //預設轉動是後是否需要停下
      // lasta=a;
      // lastb=b;

      // if(Math.abs(a)<=0.01 && Math.abs(b)<=0.01)
      // {
      // return;
      // }
      this.sineCosine(angleBasicA, angleBasicB, 0);
      for (let j = 0; j < this.tagAttrList.length; j++) {
        let rx1 = this.tagAttrList[j].cx;
        let ry1 =
          this.tagAttrList[j].cy * this.cosA +
          this.tagAttrList[j].cz * -this.sinA;
        let rz1 =
          this.tagAttrList[j].cy * this.sinA +
          this.tagAttrList[j].cz * this.cosA;

        let rx2 = rx1 * this.cosB + rz1 * this.sinB;
        let ry2 = ry1;
        let rz2 = rx1 * -this.sinB + rz1 * this.cosB;

        let rx3 = rx2 * this.cosC + ry2 * -this.sinC;
        let ry3 = rx2 * this.sinC + ry2 * this.cosC;
        let rz3 = rz2;
        this.tagAttrList[j].cx = rx3;
        this.tagAttrList[j].cy = ry3;
        this.tagAttrList[j].cz = rz3;

        let per = 350 / (350 + rz3);

        this.tagAttrList[j].x = rx3 * per - 2;
        this.tagAttrList[j].y = ry3 * per;
        this.tagAttrList[j].scale = per;
        this.tagAttrList[j].alpha = per;

        this.tagAttrList[j].alpha =
          (this.tagAttrList[j].alpha - 0.6) * (10 / 6);
      }
      this.doPosition();
      this.depthSort();
    },
    doPosition() {
      let len = this.cloudContent.offsetWidth / 2;
      let height = this.cloudContent.offsetHeight / 2;
      for (let i = 0; i < this.tagAttrList.length; i++) {
        this.tagContent[i].style.left =
          this.tagAttrList[i].cx +
          len -
          this.tagAttrList[i].offsetWidth / 2 +
          "px";
        this.tagContent[i].style.top =
          this.tagAttrList[i].cy +
          height -
          this.tagAttrList[i].offsetHeight / 2 +
          "px";
        // this.tagContent[i].style.fontSize = Math.ceil(12 * this.tagAttrList[i].scale/2) + 8 + 'px';
        this.tagContent[i].style.fontSize =
          Math.ceil((12 * this.tagAttrList[i].scale) / 2) + 2 + "px";
        this.tagContent[i].style.filter =
          "alpha(opacity=" + 100 * this.tagAttrList[i].alpha + ")";
        this.tagContent[i].style.opacity = this.tagAttrList[i].alpha;
      }
    },
    depthSort() {
      let aTmp = [];
      for (let i = 0; i < this.tagContent.length; i++) {
        aTmp.push(this.tagContent[i]);
      }
      aTmp.sort((item1, item2) => item2.cz - item1.cz);
      for (let i = 0; i < aTmp.length; i++) {
        aTmp[i].style.zIndex = i;
      }
    },
    sineCosine(a, b, c) {
      this.sinA = Math.sin(a * this.dtr);
      this.cosA = Math.cos(a * this.dtr);
      this.sinB = Math.sin(b * this.dtr);
      this.cosB = Math.cos(b * this.dtr);
      this.sinC = Math.sin(c * this.dtr);
      this.cosC = Math.cos(c * this.dtr);
    },
  },
};
</script>
 
 
<style scoped>
.content {
  width: 100%;
  height: calc(100vh - 0px);
  background-image: url(../assets/liveimg.jpeg);
  /* 設置圖片寬、高 */
  background-size: 100% 100%;
  /*按比例縮放*/
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-around;
}
.cloud-bed {
  width: 300px;
  height: 200px;
}
.cloud-box {
  position: relative;
  margin: 20px auto 0px;
  width: 100%;
  height: 100%;
  background: #00000000;
}
.cloud-box span {
  position: absolute;
  padding: 3px;
  top: 0px;
  font-weight: bold;
  text-decoration: none;
  left: 0px;
  background-image: linear-gradient(to bottom, red, #fff);
  background-clip: text;
  color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  /* line-height: 50px;
      overflow:hidden;
      white-space: nowrap;
      text-overflow: ellipsis; */
}
</style>

若對您有幫助,請點擊跳轉到B站一鍵三連哦!感謝支持!!!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • zabbix的基礎使用 zabbix服務端web界面使用介紹 基於zabbix服務端的部署進行下麵的操作 web界面 在我們登錄的時候預設會進入監控選項欄的儀錶盤界面 (Monitoring)監控選項欄設置 (Dashboard)儀錶盤 這裡我們一般要修改的是儀錶盤的佈局 選擇編輯儀錶盤 將“當前問 ...
  • 說明 之前安裝的brew被折騰壞了,重新安裝出現了一些問題,之前安裝homebrew的方式不好用了,網上資料很多,折騰了一番,最後成功了,整理好這篇記錄,避免一些坑。 系統版本 版本:macOS [email protected] 晶元:Apple M1 安裝 (1)終端輸入 /bin/zsh -c " ...
  • 目錄 一、前景回顧 二、進程的創建與初始化 三、如何進行進程的切換 四、運行測試 五、原書勘誤 一、前景回顧 在上一回我們大概講述了任務切換的發展,並且知道Linux採用的是一個CPU使用一個TSS的方式,在最後我們成功實現了tss。現在萬事俱備,我們正式來實現用戶進程。 二、進程的創建與初始化 進 ...
  • 2022-09-04 MySQL常用的命令: 1、進入MySQL的命令: mysql -uroot -p; 說明:-uroot是指以root方式進行登陸MySQL。之後輸入設置的SQL密碼。 2、查詢當前的時間 select now(); 3、退出的命令三種操作 (1)方式一,輸入命令 exit; ...
  • 事務機制 · 語雀 (yuque.com) 介紹事務 技術是為瞭解決問題而生的,通過事務我們可以解決以下問題: 多個操作不是一個整體操作,出現了部分執行成功的情況,導致數據的狀態不一致問題(原子性) 一組操作只有部分完成,沒有全部完成,但是此時可以訪問到數據的不一致狀態問題(可見性問題,隔離性) 兩 ...
  • 簡單運用 邏輯且(&&):左右必須都滿足 true 才返回 true;邏輯或(||):左右其中一個滿足 true 就返回 true。 這樣簡單的運用是整體返回一個布爾值,適合在語句判斷的時候用: let user = localStorage.getItem("user"); if (user && ...
  • 本文是深入淺出 ahooks 源碼系列文章的第十七篇,該系列已整理成文檔-地址。覺得還不錯,給個 star 支持一下哈,Thanks。 簡介 useInfiniteScroll 封裝了常見的無限滾動邏輯。 詳細可看官網 註意:這裡的無限滾動指的是常見的點擊載入更多或者說下拉載入更加功能,而不是虛擬滾 ...
  • 每日 3 題 16 以下代碼執行後,控制臺中的輸出內容為? let a = { n: 1 }; let b = a; a.x = a = { n: 2 }; console.log(a.x); console.log(b.x); 17 以下代碼執行後,控制臺中的輸出內容為? let a = {}; ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...