feat: 修改翻译显示位置

This commit is contained in:
zyronon
2025-05-18 14:20:21 +08:00
parent ba3ccedb08
commit 1bac1721ac
2 changed files with 14 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ onUnmounted(() => {
<div>{{ article.title }}</div>
</div>
<div class="text" v-if="article.text">
<div class="sentence" v-for="t in article.text.split('\n')">{{ t }}</div>
<div class="sentence" v-for="t in article.text.split('\n\n')">{{ t }}</div>
</div>
<Empty v-else/>
</div>
@@ -88,7 +88,7 @@ onUnmounted(() => {
padding-bottom: 3rem;
.sentence {
margin-bottom: 3rem;
margin-bottom: 1rem;
}
}
}

View File

@@ -13,6 +13,7 @@ import '@imengyu/vue3-context-menu/lib/vue3-context-menu.css'
import ContextMenu from '@imengyu/vue3-context-menu'
import {useToast} from 'vue-toast-notification';
import 'vue-toast-notification/dist/theme-sugar.css';
import {getTranslateText} from "@/hooks/article.ts";
interface IProps {
article: Article,
@@ -458,6 +459,14 @@ defineExpose({showSentence, play, del, hideSentence, nextSentence})
</div>
<div class="cursor" v-if="!isEnd" :style="{top:cursor.top+'px',left:cursor.left+'px'}"></div>
</div>
<div class="translate-bottom">
<header class="mb-4">
<div class="text-2xl center">{{ props.article.titleTranslate }}</div>
</header>
<template v-if="getTranslateText(article).length">
<div class="text-xl" v-for="t in getTranslateText(article)">{{ t }}</div>
</template>
</div>
</div>
</template>
@@ -501,7 +510,7 @@ defineExpose({showSentence, play, del, hideSentence, nextSentence})
article {
font-size: 1.6rem;
line-height: 1.3;
line-height: 1.5;
word-break: keep-all;
word-wrap: break-word;
white-space: pre-wrap;
@@ -530,7 +539,8 @@ defineExpose({showSentence, play, del, hideSentence, nextSentence})
.hover-show {
background: var(--color-main-active);
color: white !important;
.wrote{
.wrote {
color: white !important;
}
}