vue 中svga 实现礼物特效

官网api http://svga.io/integrated.html
svga 展示获取svga信息 http://svga.io/svga-preview.html
1.0 安装 SVGA()

  //npm
  npm install svgaplayerweb --save
  // script  引入方式 在vue 中不常用
  <script src="https://cdn.jsdelivr.net/npm/svgaplayerweb@2.1.0/build/svga.min.js"></script>

2.0 使用
svga.vue

<template>
<div class="container">
  <div id="demoCanvas" class="svga" ref="canvas"></div>
</div>
</template>
<script>
import SVGA from 'svgaplayerweb'
export default{
    data(){
       return {
        // 只是用于展示svga 图片信息 此页面中没有应用到
        svgaInfo :{
                "version": "2.0",
                "FPS": 20,
                "frames": 75,
                "videoSize": {
                    "width": 480,
                    "height": 480
               }
            }
     }
    },
    created(){},
    mounted(){
      this.svgaUrl = 'https://woshimiimage.mvoicer.com/image/item/img/1560828651416.svga';
      this.player = new SVGA.Player('#demoCanvas');
      this.parser = new SVGA.Parser('#demoCanvas');
     /**如果你需要支持 IE6+,那么必须把同样的选择器传给 Parser。   
      *SVGA.Parser 用于加载远端或 Base64 动画,并转换成 VideoItem。
      * 跨域的 SVGA 资源需要使用 CORS 协议才能加载成功。
      */
     this.svgaInitial()
     this.setFill()
   },
    methods:{
 /**
        setFill(){
        var $_canvas = this.$refs.canvas,
        w = window.innerWidth, // --->414
        h = window.innerHeight, //--->736
        screen_proportion = h/w, // --->1.7777777777777
        svga_proportion = 16/9; // --->1.7777777777777
        if(screen_proportion > svga_proportion){//长屏幕
            $_canvas.style.width = h/svga_proportion+'px';
            $_canvas.style.left = (w-h/svga_proportion)/2+'px';
        }else{
            $_canvas.style.height = w*svga_proportion+'px';
            $_canvas.style.top = (h-w*svga_proportion)/2+'px';
         }
       },
*/
      // svga 最初化
      svgaInitial(){
          var that = this ;
            that.parser.load(that.svgaUrl,function(videoItem){
            let arr  =Object.entries(videoItem.images);  //---> 将对象转化成数组
            that.giftsLen = arr.length ;
            that.player.loops = 0; // 动画循环次数  0 无限循环 
            that.player.setVideoItem(videoItem);
            that.player.startAnimation(); // 开始动画 
            that.releaseGift(arr.splice(0,arr.length-1),that.giftsLen) ;
            that.player.onFrame(function(i){
                if(i>30){
                    // that.player.stopAnimation() //---> 停止动画
                }
            })
            that.player.onFinished(function(){
                console.log('动画结束了执行相应的函数')
                // window.location.href ="https://www.baidu.com" 
            })
            if(that.giftsLen>0){
               //  that.enter(arr,that.giftsLen) --->根据实际需求选择性调用 有动画拼接的时候调用该函数
            }
           },(err)=>console.log(err))
      },
      releaseGift (data,len){
          // ---->自定义动画中文本的样式如下
          var _that = this
           data.forEach((item,index) => {
               console.log(item[0])
            // _that.player.setImage(item[1],`${item[0]}`);
            let form = "hello" // ---> 文本
            _that.player.setText({
                 text:form,
                 size:form.length > 2 ? "50px" :"100px",
                 color:"linear-gradient(to right, #e1d7b4, #bfae7d)",
                 family:"Impact", // ---> family 设置之后 text 才会生效  反之 不生效
                 offset:{
                    x:0,
                    y:0
                 },
                 textShadow:{
                    color:'rgba(0, 0, 0, 0.01)',
                    offsetX:0,
                    offsetY:3,
                    blur:3
                }
            },`${item[0]}`)
        })
   },
/**
   enter(gift,len) {
        switch(len){
            case 1:
                this.player.startAnimationWithRange({location:0,length:200});
            break;
            case 2:
                this.player.startAnimationWithRangeDouble([{location:0,length:150},{location:200,length:50}]);
            break;
            case 3:
               this.player.startAnimationWithRangeDouble([{location:0,length:150},{location:250,length:50}]);
            break;
            case 4:
               this.player.startAnimationWithRangeDouble([{location:0,length:150},{location:300,length:50}]);
            break;
            case 5:
               this.player.startAnimationWithRangeDouble([{location:0,length:150},{location:350,length:50}]);
            break;
           //startAnimationWithRangeDouble()方法 : 多段拼接播放
        }
  }
*/
 }
}
</script>
<style>
</style>

api 介绍
方法

  • 构造函数(画布);第一个参数可以是'#id'或CanvasHTMLElement
  • startAnimation(); 从零帧开始动画。
  • startAnimationWithRange(范围:{位置:数字,长度:数字},反向:布尔=假): 在[位置,位置+长度]帧范围内开始动画。
  • pauseAnimation(); 在当前帧上暂停动画。
  • stopAnimation(); 停止动画,在clearsAfterStop === true时清除内容
  • setContentMode(mode:“ ScaleToFill” |“ AspectFill” |“ AspectFit”): 特定比例模式(不常用)
  • setClipsToBounds(clipsToBounds:boolean):如果开箱即用,则剪辑。
    明确(); 强制清除内容。
  • stepToFrame(frame:int,andPlay:Boolean); -停止到特定的帧,同时播放动画,而andPlay === true
  • stepToPercentage(percentage:float,andPlay:Boolean):停止到特定的百分比,同时播放动画,而andPlay === true
  • setImage(image:string,forKey:string,transform:[a,b,c,d,tx,ty]): 动态替换动画图像,变换是可选的,变换可以调整替换图像。
  • setText(text:string | {text:string,family:string,size:string,color:string,offset:{x:float,y:float}},forKey:string): 在动画图像上动态添加文本(自定义文本样式)
  • clearDynamicObjects() :清除所有动态对象。
    回调方法
  • onFinished(callback:()=> void):动画停止后调用。
  • onFrame(function(i){console.log(i)}):void: -在渲染动画特定的帧后调用。
  • onPercentage():无效; -在渲染特定动画百分比后调用。
    注 :在回调方法中执行相应的方法
    Android 4.x中断
    众所周知,某些Android操作系统缺少Blob支持,请自行添加Blob Polyfill。
    <script src="//cdn.bootcss.com/blob-polyfill/1.0.20150320/Blob.min.js"></script>
    参考文章:https://yuchengkai.cn/react/#%E4%BB%8B%E7%BB%8D
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,012评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,628评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,653评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,485评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,574评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,590评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,596评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,340评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,794评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,102评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,276评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,940评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,583评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,201评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,441评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,173评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,136评论 2 352