修复歌词菜单的弹出问题

pull/930/merge
lyswhut 2022-04-01 14:29:07 +08:00
parent dee16f6943
commit 36ac3532e6
1 changed files with 7 additions and 2 deletions

View File

@ -1,7 +1,12 @@
<template> <template>
<div :class="['right', $style.right]" :style="lrcFontSize" @contextmenu.stop="handleShowLyricMenu"> <div :class="['right', $style.right]" :style="lrcFontSize">
<transition enter-active-class="animated fadeIn" leave-active-class="animated fadeOut"> <transition enter-active-class="animated fadeIn" leave-active-class="animated fadeOut">
<div v-show="!isShowLrcSelectContent" :class="['lyric', $style.lyric, { [$style.draging]: isMsDown }, { [$style.lrcActiveZoom]: isZoomActiveLrc }]" :style="lrcStyles" @wheel="handleWheel" @mousedown="handleLyricMouseDown" ref="dom_lyric"> <div v-show="!isShowLrcSelectContent"
:class="['lyric', $style.lyric, { [$style.draging]: isMsDown }, { [$style.lrcActiveZoom]: isZoomActiveLrc }]"
:style="lrcStyles" @wheel="handleWheel"
@mousedown="handleLyricMouseDown" ref="dom_lyric"
@contextmenu.stop="handleShowLyricMenu"
>
<div :class="['pre', $style.lyricSpace]"></div> <div :class="['pre', $style.lyricSpace]"></div>
<div ref="dom_lyric_text"></div> <div ref="dom_lyric_text"></div>
<div :class="$style.lyricSpace"></div> <div :class="$style.lyricSpace"></div>