中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue怎么實現波紋按鈕效果

發布時間:2022-11-19 10:05:47 來源:億速云 閱讀:170 作者:iii 欄目:開發技術

這篇文章主要介紹了Vue怎么實現波紋按鈕效果的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Vue怎么實現波紋按鈕效果文章都會有所收獲,下面我們一起來看看吧。

先說一下用法:

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

Vue的優點

Vue具體輕量級框架、簡單易學、雙向數據綁定、組件化、數據和結構的分離、虛擬DOM、運行速度快等優勢,Vue中頁面使用的是局部刷新,不用每次跳轉頁面都要請求所有數據和dom,可以大大提升訪問速度和用戶體驗。

關于“Vue怎么實現波紋按鈕效果”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Vue怎么實現波紋按鈕效果”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

永昌县| 山丹县| 喀喇沁旗| 浦城县| 德安县| 巴里| 西盟| 灌南县| 房产| 政和县| 钟祥市| 霍州市| 安仁县| 太保市| 丹东市| 武平县| 昌乐县| 康乐县| 昌吉市| 临汾市| 香河县| 天祝| 蓝山县| 武隆县| 马关县| 南平市| 凤城市| 图木舒克市| 炉霍县| 南阳市| 康平县| 宝鸡市| 西峡县| 平泉县| 湘西| 云安县| 葫芦岛市| 东台市| 离岛区| 盈江县| 汾阳市|