欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue实现标签云效果的方法详解

程序员文章站 2022-09-07 08:00:31
本文实例讲述了vue实现标签云效果的方法。分享给大家供大家参考,具体如下: 闲扯两句 最近想给自己的博客上加上一个3d标签云的效果,用来表示自己博客文章的分组,网上找到...

本文实例讲述了vue实现标签云效果的方法。分享给大家供大家参考,具体如下:

闲扯两句

最近想给自己的博客上加上一个3d标签云的效果,用来表示自己博客文章的分组,网上找到了canvas实现的,还有a元素实现的解析3d标签云,我想让标签可以选择和点击,又不想在标签数量较多时操作a标签导致性能问题,于是svg就成了一个不错的选择。

标签初始化

这里实现的核心主要是参考了前面的那篇解析3d标签云的文章,作者给出了源码,讲解也比较通俗易懂。大体来说,整个代码分三步:

  • 根据标签的数量,算出每个标签在球面上分布的x,y,z坐标
  • 根据标签的坐标,将标签绘制出来,x,y坐标通过标签的位置来表示,z坐标通过标签字体的大小和透明度来表示
  • 通过函数根据球的旋转角速度不断计算标签新的x,y坐标,制造出旋转效果
  • 通过mousemove事件,根据鼠标坐标值,改变球旋转的角速度,做出交互效果

贴上代码:

  <div id='app' >
    <svg :width='width' :height='height' @mousemove='listener($event)'>
      <a :href="tag.href" rel="external nofollow" v-for='tag in tags'>
        <text :x='tag.x' :y='tag.y' :font-size='20 * (600/(600-tag.z))' :fill-opacity='((400+tag.z)/600)'>{{tag.text}}</text>
      </a>
    </svg>
  </div>

在模板中,借用指令v-for来渲染标签,每个标签上绑定了x,y,font-size(用来表现z轴),fill-opacity(都是与z坐标有关的表达式,用来表现z轴),及text;

 data: {
   width:700,//svg宽度
   height:700,//svg高度
   tagsnum:20,//标签数量
   radius:200,//球的半径
   speedx:math.pi/360,//球一帧绕x轴旋转的角度
   speedy:math.pi/360,//球-帧绕y轴旋转的角度
   tags: []
 }
 computed:{
   cx(){//球心x坐标
     return this.width/2;
   },
   cy(){//球心y坐标
     return this.height/2;
   }
 },

做好了上面的基础,下面我们来初始化标签数据:

 created(){//初始化标签位置
   let tags=[];
   for(let i = 0; i < this.tagsnum; i++){
     let tag = {};
     let k = -1 + (2 * (i + 1) - 1) / this.tagsnum;
     let a = math.acos(k);
     let b = a * math.sqrt(this.tagsnum * math.pi)//计算标签相对于球心的角度
     tag.text = i + 'tag';
     tag.x = this.cx + this.radius * math.sin(a) * math.cos(b);//根据标签角度求出标签的x,y,z坐标
     tag.y = this.cy + this.radius * math.sin(a) * math.sin(b); 
     tag.z = this.radius * math.cos(a);
     tag.href = 'https://imgss.github.io';//给标签添加链接
     tags.push(tag);
   }
   this.tags = tags;//让vue替我们完成视图更新
 },

到了这里,我们就算了算坐标,vue完成了视图更新的工作,这时基本上就可以得到一副静态的图像了:
vue实现标签云效果的方法详解
下面就是通过改变每一个tag的x,y的值来使球旋转起来;实现方法是rotatex,rotatey函数:

  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;
    }
  },

这两个函数就是根据标签原来的坐标和球旋转的角度算出新的坐标,最后在mounted钩子下面,写一个animate函数,不断调用这两个函数,实现旋转动画

  mounted(){//使球开始旋转
    setinterval(() => {
      this.rotatex(this.speedx);
      this.rotatey(this.speedy);
    }, 17)
  },

全部代码如下:

   <script>
    var app = new vue({
      el: '#app',
      data: {
        width:700,
        height:700,
        tagsnum:20,
        radius:200,
        speedx:math.pi/360,
        speedy:math.pi/360,
        tags: []
      },
      computed:{
        cx(){
          return this.width/2;
        },
        cy(){
          return this.height/2;
        }
      },
      created(){//初始化标签位置
        let tags=[];
        for(let i = 0; i < this.tagsnum; i++){
          let tag = {};
          let k = -1 + (2 * (i + 1) - 1) / this.tagsnum;
          let a = math.acos(k);
          let b = a * math.sqrt(this.tagsnum * math.pi);
          tag.text = i + 'tag';
          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.href = 'https://imgss.github.io';
          tags.push(tag);
        }
        this.tags = tags;
      },
      mounted(){//使球开始旋转
        setinterval(() => {
          this.rotatex(this.speedx);
          this.rotatey(this.speedy);
        }, 17)
      },
      methods: {
        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>

完整demo · vue · no vue
vue实现标签云效果的方法详解

总结

vue的数据绑定可以减少我们对dom的操作,而将关注点放在逻辑上面,vue构造函数提供的几个选项可以帮助我们更好的组织代码

希望本文所述对大家vue.js程序设计有所帮助。