91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么在Vue中使用Canvas實現一個彈幕組件

發布時間:2021-04-16 17:08:15 來源:億速云 閱讀:478 作者:Leah 欄目:web開發

本篇文章為大家展示了怎么在Vue中使用Canvas實現一個彈幕組件,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

功能介紹

  • 支持循環彈幕

  • 彈幕不重疊

  • 支持選擇軌道數

  • 支持彈幕發送

使用

npm i vue-barrage

參數配置 

nametypedefaultdesc
barrageListArray[]彈幕數據
speedNumber4彈幕滾動速度
loopBooleantrue是否循環滾動
channelsNumber2彈幕軌道數

功能實現

html樣式

<template>
    <div class="barrage-container">
        <div
            class="container"
            :style="{height: barrageHeight/2+'px'}">
            <canvas
                id="canvas"
                ref="canvas"
                :width="barrageWidth"
                :height="barrageHeight"
                :style="{'width': barrageWidth/2 + 'px','height': barrageHeight/2 + 'px'}"/>
        </div>
    </div>
</template>

js實現

監聽數據源

watch: {
    barrageList (val) {
        if (val.length !== 0) {
            this.initData() // 數據初始化
            this.render() // 開始渲染
        }
    }
}

數據初始化

barrageArray 是存儲彈幕數據用的,包括默認彈幕列表和新增彈幕項

/**
 * 數據初始化
 */
initData () {
    for (let i = 0; i < this.barrageList.length; i++) { // 此處處理只顯示40個字符
        let content = this.barrageList[i].content.length > 40 ? `${this.barrageList[i].content.substring(0, 40)}...` : this.barrageList[i].content
        this.pushMessage(content, this.barrageList[i].color)
    }
},
/**
 * 增加數據
 * @param content
 * @param color
 */
pushMessage (content, color) {
    let position = this.getPosition() // 確定跑道位置
    let x = this.barrageWidth // 初始位置
    let offsetWidth = 0
    for (let i = 0, len = this.barrageArray.length; i < len; i++) {
        let item = this.barrageArray[i]
        if (position === item.position) { // 如果同跑道,則往后排
            offsetWidth += Math.floor(this.ctx.measureText(item.content).width * 3 + 60)
        }
    }
    this.barrageArray.push({
        content: content, // 彈幕內容
        x: x + offsetWidth, // 確定每一條彈幕的初始位置
        originX: x + offsetWidth, // 存儲當前彈幕的位置,以便在循環的時候使用
        position: position,
        width: this.ctx.measureText(content).width * 3, // canvas繪制內容寬度
        color: color || this.getColor() // 自定義顏色
    })
},

初始化數據需要處理的就是計算當前彈幕的軌道、位置、寬度,以便在 canvas 繪制的時候使用

繪制 canvas

/**
 * 渲染
 */
render () {
    this.ctx.clearRect(0, 0, this.barrageWidth, this.barrageHeight)
    this.ctx.font = '30px Microsoft YaHei'
    this.draw()
    window.requestAnimationFrame(this.render) // 每隔16.6毫秒渲染一次,如果使用setInterval的話在低端機型會有點卡頓
},
/**
 * 開始繪制 文字和背景
 */
draw () {
    for (let i = 0, len = this.barrageArray.length; i < len; i++) {
        let barrage = this.barrageArray[i]
        try {
            barrage.x -= this.speed
            if (barrage.x < -barrage.width - 100) { // 此處判斷彈幕消失時機
                if (i === this.barrageArray.length - 1) { // 最后一條消失時的判斷邏輯
                    if (!this.loop) { //如果不是循環彈幕的話就取消繪制 判斷是否循環,不循環執行cancelAnimationFrame
                        cancelAnimationFrame(this.render)
                        return
                    }
                    if (this.addArray.length !== 0) { // 此處判斷增加彈幕的邏輯
                        this.barrageArray = this.barrageArray.concat(this.addArray)
                        this.addArray = []
                    }
                    for (let j = 0; j < this.barrageArray.length; j++) { // 給每條彈幕的x初始值
                        this.barrageArray[j].x = this.barrageArray[j].originX
                    }
                }
            }
            if (barrage.x <= 2 * document.body.clientWidth + barrage.width) { // 判斷什么時候開始繪制,如果不判斷的話會導致彈幕滾動卡頓
                // 繪制背景
                this.drawRoundRect(this.ctx, barrage.x - 15, barrage.position - 30, barrage.width + 30, 40, 20, `rgba(0,0,0,0.75)`)
                // 繪制文字
                this.ctx.fillStyle = `${barrage.color}`
                this.ctx.fillText(barrage.content, barrage.x, barrage.position)
            }
        } catch (e) {
            console.log(e)
        }
    }
},

此處判斷繪制邏輯,包括什么時候取消,彈幕開始繪制判斷,彈幕消失判斷

其他函數

/**
 * 獲取文字位置
 * 使用pathWayIndex來確認每一條彈幕所在的軌道
 * 返回距離頂部的距離
 * @TODO此處還可以優化,根據每條軌道的距離來判斷下一條彈幕出現位置 
 */
getPosition () {
    let range = this.channels
    let top = (this.pathWayIndex % range) * 50 + 40
    this.pathWayIndex++
    return top
},
/**
 * 獲取隨機顏色
 */
getColor () {
    return '#' + ('00000' + (Math.random() * 0x1000000 << 0).toString(16)).slice(-6);
},
/**
 * 繪畫圓角矩形
 * @param context
 * @param x
 * @param y
 * @param width
 * @param height
 * @param radius
 * @param color
 */
drawRoundRect (context, x, y, width, height, radius, color) {
    context.beginPath()
    context.fillStyle = color
    context.arc(x + radius, y + radius, radius, Math.PI, Math.PI * 3 / 2)
    context.lineTo(width - radius + x, y)
    context.arc(width - radius + x, radius + y, radius, Math.PI * 3 / 2, Math.PI * 2)
    context.lineTo(width + x, height + y - radius)
    context.arc(width - radius + x, height - radius + y, radius, 0, Math.PI / 2)
    context.lineTo(radius + x, height + y)
    context.arc(radius + x, height - radius + y, radius, Math.PI / 2, Math.PI)
    context.fill()
    context.closePath()
}

此處為彈幕服務函數

使用

<barrage
    ref="barrage"
    class="barrage"
    :barrage-list="barrageList"
    :speed="speed"
    :loop="loop"
    :channels="channels"/>
    
import Barrage from 'vue-barrage'

// 彈幕數據初始化  
this.barrageList = [{
    content: '試數據測試數測試數據數測試數據',
    color: 'white'
}]

// 新增彈幕
this.$refs.barrage.add({
    content: '增加一條新的彈幕增加一條新的彈幕', color: 'white'
})

上述內容就是怎么在Vue中使用Canvas實現一個彈幕組件,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

丰原市| 南汇区| 静宁县| 宁南县| 萨嘎县| 高要市| 青州市| 额敏县| 正宁县| 尼木县| 兴安盟| 青川县| 沐川县| 鹤岗市| 邢台市| 太仆寺旗| 法库县| 景东| 湖州市| 涿鹿县| 涡阳县| 新和县| 曲阳县| 化隆| 安阳市| 青田县| 南昌市| 曲阳县| 东乡县| 昔阳县| 永州市| 宜良县| 岳阳县| 江油市| 莱阳市| 巴林左旗| 马公市| 衡山县| 霍山县| 黎平县| 娄烦县|