>  기사  >  웹 프론트엔드  >  VUE 페이지 사운드 + 제목 플래시 알림 구성요소 공유

VUE 페이지 사운드 + 제목 플래시 알림 구성요소 공유

藏色散人
藏色散人앞으로
2023-03-14 17:28:161491검색

이 기사는 VUE에 대한 관련 지식을 제공합니다. 주로 VUE 페이지 사운드 + 제목 플래시 알림 구성 요소를 공유합니다. 관심 있는 친구는 아래를 살펴보는 것이 모든 사람에게 도움이 되기를 바랍니다.

VUE 페이지 사운드 + 제목 플래시 알림 구성요소 공유

A VUE 페이지 사운드 + 제목 플래시 알림 구성 요소

1. 사용 방법

1.1 구성 요소 템플릿 참조

<PageNotice ref="pageNotice" sound="/xxx/new_message.mp3" />

1.2 지원되는 매개 변수

sound: 알림 시 재생되는 사운드

1.3 동적 호출 방법

$refs.pageNotice.tip(&#39;你好&#39;,&#39;新消息&#39;) $refs.pageNotice.tip(&#39;有新客户访问&#39;)

2. 컴포넌트 소스 코드

PageNotice 컴포넌트 소스 코드는 다음과 같습니다

<template>
    <div>
        <audio ref="audio" :src="sound"></audio>
    </div>
</template>
<script>
export default {
    name: "PageNotice",
    props: {
        sound: {
            type: String,
            default: &#39;&#39;
        },
    },
    data() {
        return {
            tipTimer: null,
            tipTimerCount: 0,
            titleOld: null,
        }
    },
    methods: {
        tip(msg, type) {
            this.doPageTitle(msg, type)
            if (this.sound) {
                this.doPlaySound()
            }
        },
        doClearTimer() {
            clearInterval(this.tipTimer)
            this.tipTimer = null
            if (this.titleOld) {
                window.document.title = this.titleOld
            }
            this.tipTimerCount = 0
        },
        doPageTitle(msg, type) {
            type = type || &#39;提醒&#39;
            if (this.tipTimer) {
                this.doClearTimer()
            }
            this.titleOld = document.title
            this.tipTimerCount = 0
            this.tipTimer = setInterval(() => {
                this.tipTimerCount++
                if (this.tipTimerCount % 2 === 0) {
                    window.document.title = &#39;【&#39; + type + &#39;】&#39; + msg
                } else {
                    window.document.title = &#39;&#39; + msg
                }
                if (this.tipTimerCount > 6) {
                    this.doClearTimer()
                }
            }, 500)
        },
        doPlaySound() {
            let audio = this.$refs.audio
            if (!audio) {
                return
            }
            try {
                audio.pause()
                audio.play()
            } catch (e) {
            }
        }
    }
}
</script>

추천 학습: "vue.js 비디오 튜토리얼"

위 내용은 VUE 페이지 사운드 + 제목 플래시 알림 구성요소 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 learnku.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제