This commit is contained in:
kunfei 2023-05-16 14:27:00 +08:00
parent 092fd76287
commit cab4f184ce

View File

@ -222,11 +222,11 @@ const onResize = () => {
const checkPageWidth = (readWidth) => {
if (store.miniInterface) return;
if (readWidth + 2 * 68 > window.innerWidth) store.config.readWidth -= 160;
}
};
watch(
() => store.config.readWidth,
(width) => checkPageWidth(width)
)
);
//
const top = ref();
const bottom = ref();
@ -469,7 +469,7 @@ onMounted(() => {
localStorage.setItem(bookUrl, JSON.stringify(book));
}
onResize();
window.addEventListener('resize', onResize);
window.addEventListener("resize", onResize);
loadingWrapper(
API.getChapterList(bookUrl).then(
(res) => {
@ -505,7 +505,7 @@ onMounted(() => {
onUnmounted(() => {
window.removeEventListener("keyup", handleKeyPress);
window.removeEventListener('resize', onResize);
window.removeEventListener("resize", onResize);
// Safari < 14
document.removeEventListener("visibilitychange", onVisibilityChange);
readSettingsVisible.value = false;
@ -526,7 +526,7 @@ onUnmounted(() => {
.chapter-wrapper {
padding: 0 4%;
overflow-x: hidden;
:deep(.no-point) {