javascript - tagCanvas外掛無法自動播放
PHP中文网
PHP中文网 2017-06-15 09:22:25
0
1
740

tagCanvas外掛程式
這個外掛好像沒有自動插放的參數,有誰改過原始碼的?能給過來參考下嗎?

原始碼位址

PHP中文网
PHP中文网

认证0级讲师

全部回覆(1)
学习ing

這插件沒用過,看了下原始碼:

TCproto.Draw = function() {
    var cv = this.canvas, cw = cv.width, ch = cv.height, max_sc = 0, yaw = this.yaw, pitch = this.pitch,
        x1 = cw / 2, y1 = ch / 2, c = this.ctxt, active, a, i, tl = this.taglist, l = tl.length;
    c.setTransform(1,0,0,1,0,0);
    this.active = null;
    for(i = 0; i < l; ++i)
        tl[i].Calc(yaw, pitch);
    tl = tl.sort(function(a,b) {return a.sc-b.sc});

    if(!this.txtOpt && this.shadow) {
        c.shadowBlur = this.shadowBlur;
        c.shadowOffsetX = this.shadowOffset[0];
        c.shadowOffsetY = this.shadowOffset[1];
    }
    c.clearRect(0,0,cw,ch);
    for(i = 0; i < l; ++i) {
        a = tl[i].Draw(c, x1, y1);
        if(a && a.sc > max_sc && (!this.frontSelect || a.z <= 0)) {
            active = a;
            active.index = i;
            max_sc = a.sc;
        }
    }
    /**在这一块**/
    if(this.freezeActive && active)
        this.yaw = this.pitch = 0;
    else
        this.Animate(cw, ch);
    /***Animate函数里面是运动计算公式,你需要调整的是在鼠标没有触发hover时也能保持动画不是freeze状态,具体代码你自己改吧***/
    active && (this.active = active).Draw(c);
};
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!