1. <ul id="0c1fb"></ul>

      <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
      <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区

      RELATEED CONSULTING
      相關咨詢
      選擇下列產品馬上在線溝通
      服務時間:8:30-17:00
      你可能遇到了下面的問題
      關閉右側工具欄

      新聞中心

      這里有您想知道的互聯網營銷解決方案
      Vue3基于countUp.js如何實現數字滾動的插件

      這篇“Vue3基于countUp.js如何實現數字滾動的插件”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Vue3基于countUp.js如何實現數字滾動的插件”文章吧。

      創(chuàng)新互聯公司執(zhí)著的堅持網站建設,重慶小程序開發(fā);我們不會轉行,已經持續(xù)穩(wěn)定運營十余年。專業(yè)的技術,豐富的成功經驗和創(chuàng)作思維,提供一站式互聯網解決方案,以客戶的口碑塑造品牌,攜手廣大客戶,共同發(fā)展進步。

      countUp 簡介

      CountUp.js 是一種無依賴項的輕量級 JavaScript 類,可用于快速創(chuàng)建以更有趣的方式顯示數字數據的動畫。CountUp 可以在兩個方向上進行計數,具體取決于傳遞的開始和結束值。

      雖然現在市面上基于 countUp.js 二次封裝的Vue組件不在少數, 但我個人是不太喜歡使用這些第三方封裝的,因為第三方組件的更新頻率很難保證,也許作者只是一時興起封裝上傳了, 并未打算繼續(xù)維護,如果使用了 等于后續(xù)根本沒有維護性了, 所以這種二次封裝我推薦自行實現, 我們可以通過本次封裝熟悉一下 vue3, ts 的語法

      countUp 組件封裝

      首先進行安裝

      npm i countup.js

      安裝好之后新建文件 CountUp.vue , template部分很簡單, 只需要一個span標簽, 同時給span一個 ref='countupRef' 就完成了,首先引入 countup.js, 按住Ctrl鼠標左鍵點擊Countup.js可以看到 d.ts文件, countUp.d.ts 如下

      export interface CountUpOptions {
          startVal?: number;
          decimalPlaces?: number;
          duration?: number;
          useGrouping?: boolean;
          useIndianSeparators?: boolean;
          useEasing?: boolean;
          smartEasingThreshold?: number;
          smartEasingAmount?: number;
          separator?: string;
          decimal?: string;
          easingFn?: (t: number, b: number, c: number, d: number) => number;
          formattingFn?: (n: number) => string;
          prefix?: string;
          suffix?: string;
          numerals?: string[];
          enableScrollSpy?: boolean;
          scrollSpyDelay?: number;
          scrollSpyOnce?: boolean;
          onCompleteCallback?: () => any;
          plugin?: CountUpPlugin;
      }
      export declare interface CountUpPlugin {
          render(elem: HTMLElement, formatted: string): void;
      }
      export declare class CountUp {
          private endVal;
          options?: CountUpOptions;
          version: string;
          private defaults;
          private rAF;
          private startTime;
          private remaining;
          private finalEndVal;
          private useEasing;
          private countDown;
          el: HTMLElement | HTMLInputElement;
          formattingFn: (num: number) => string;
          easingFn?: (t: number, b: number, c: number, d: number) => number;
          error: string;
          startVal: number;
          duration: number;
          paused: boolean;
          frameVal: number;
          once: boolean;
          constructor(target: string | HTMLElement | HTMLInputElement, endVal: number, options?: CountUpOptions);
          handleScroll(self: CountUp): void;
          /**
           * Smart easing works by breaking the animation into 2 parts, the second part being the
           * smartEasingAmount and first part being the total amount minus the smartEasingAmount. It works
           * by disabling easing for the first part and enabling it on the second part. It is used if
           * usingEasing is true and the total animation amount exceeds the smartEasingThreshold.
           */
          private determineDirectionAndSmartEasing;
          start(callback?: (args?: any) => any): void;
          pauseResume(): void;
          reset(): void;
          update(newEndVal: string | number): void;
          count: (timestamp: number) => void;
          printValue(val: number): void;
          ensureNumber(n: any): boolean;
          validateValue(value: string | number): number;
          private resetDuration;
          formatNumber: (num: number) => string;
          easeOutExpo: (t: number, b: number, c: number, d: number) => number;
      }

      這里 export 了一個 CountUp 類 還有一個 CountUpOptions 的interface, CountUp 類的 constructor 接收三個參數, 分別是 dom節(jié)點, endVal, 以及 options, 我們將這三個參數當成是 props 傳入同時給定默認值, , 首先獲取span的ref作為 countUp初始化的容器 , 定義一個變量 numAnim 接收 new CountUp(countupRef.value, props.end, props.options) 的返回值, , 在 onMounted中初始化countUp.js,接著我們就可以去頁面引入 CountUp.vue 看看效果,因為有默認值,所以我們不需要傳入任何參數, 直接看就好了, 此時CountUp.vue組件代碼如下,

      
      

      這時我們發(fā)現,在 onMounted 執(zhí)行之后, 如果我們的endVal值發(fā)生了改動, 由于 CountUp.vueonMounted 已經完成,并不會同步修改, 如果我們的值是異步獲取的,會造成渲染不出我們想要的結果,那么我們就需要在組件中把這個 initCount 方法給暴露給父組件使用,在vue3中,我們只需要使用 defineExpose 暴露即可, 同時我們也進一步完善一下我們的props, 校驗限制一下傳入的optinos值, 盡量避免使用上的錯誤, 同時修改一下默認值,避免造成一些問題,最終的代碼如下

      
      
      
      

      以上就是關于“Vue3基于countUp.js如何實現數字滾動的插件”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注創(chuàng)新互聯行業(yè)資訊頻道。


      新聞名稱:Vue3基于countUp.js如何實現數字滾動的插件
      標題網址:http://ef60e0e.cn/article/joejjc.html
      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区
      1. <ul id="0c1fb"></ul>

        <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
        <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

        罗源县| 桃园县| 苍山县| 临颍县| 太仆寺旗| 昭苏县| 盐源县| 鄯善县| 宁城县| 太保市| 永宁县| 邯郸市| 眉山市| 临西县| 建昌县| 屯留县| 建阳市| 三河市| 乐山市| 长沙市| 东宁县| 吉林市| 昌吉市| 陈巴尔虎旗| 东源县| 文成县| 肇州县| 宁夏| 怀仁县| 孟村| 巴青县| 嘉定区| 长沙市| 双辽市| 赤壁市| 拉萨市| 长兴县| 宁安市| 罗江县| 莱阳市| 梧州市|