为了账号安全,请及时绑定邮箱和手机立即绑定

Vue 波纹按钮组件

Vue 波纹按钮组件

文章出处:zhanglearning---原文地址

代码链接:https://github.com/zhangKunUserGit/vue-component

效果图:

https://img1.sycdn.imooc.com//5ae47d3e0001c2c705120186.jpg

大家可以在线运行: https://zhangkunusergit.github.io/vue-component/dist/btnRipple.html 看看效果(一定要狠狠的点击哦)。

先说一下用法:

<zk-button class="btn btn-default">默认按钮</zk-button>
<zk-button class="btn btn-default btn-round">默认按钮</zk-button>
<zk-button class="btn btn-default btn-round" :speed="4" :opacity="0.6">定义速度和初始的波浪透明度</zk-button>

原理:

这里用的是canvas + requestAnimationFrame(兼容性可以网上找一下解决方法) 绘制的波纹,有些用的是css transform + setTimeout做的,我感觉不太好。

模板(template):

<template>
  <button class="zk-btn">
    <canvas class="zk-ripple" @click="ripple"></canvas>
    <slot></slot>
  </button></template>

点击代码如下(我已经加入详细的注释)

复制代码

ripple(event) {  // 清除上次没有执行的动画
  if (this.timer) {
    window.cancelAnimationFrame(this.timer);
  }  this.el = event.target;  // 执行初始化
  if (!this.initialized) {    this.initialized = true;    this.init(this.el);
  }  this.radius = 0;  // 点击坐标原点
  this.origin.x = event.offsetX;  this.origin.y = event.offsetY;  this.context.clearRect(0, 0, this.el.width, this.el.height);  this.el.style.opacity = this.opacity;  this.draw();
},

复制代码

这里主要初始化canvas和获取用户点击的位置坐标,并开始绘制。

循环绘制 

复制代码

draw() {  this.context.beginPath();  // 绘制波纹
  this.context.arc(this.origin.x, this.origin.y, this.radius, 0, 2 * Math.PI, false);  this.context.fillStyle = this.color;  this.context.fill();  // 定义下次的绘制半径和透明度
  this.radius += this.speed;  this.el.style.opacity -= this.speedOpacity;  // 通过判断半径小于元素宽度或者还有透明度,不断绘制圆形
  if (this.radius < this.el.width || this.el.style.opacity > 0) {    this.timer = window.requestAnimationFrame(this.draw);
  } else {    // 清除画布
    this.context.clearRect(0, 0, this.el.width, this.el.height);    this.el.style.opacity = 0;
  }
}

复制代码


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消