generated from dellevin/template
222
This commit is contained in:
@@ -96,7 +96,7 @@
|
|||||||
|
|
||||||
<!-- 完整博客文章弹窗(点击后显示) -->
|
<!-- 完整博客文章弹窗(点击后显示) -->
|
||||||
<div id="blog-posts-full-modal" class="guestbook-full-modal">
|
<div id="blog-posts-full-modal" class="guestbook-full-modal">
|
||||||
<div class="full-modal-content">
|
<div class="full-modal-content solid-modal">
|
||||||
<div class="guestbook-header">
|
<div class="guestbook-header">
|
||||||
<h2>博客文章</h2>
|
<h2>博客文章</h2>
|
||||||
<button id="blog-posts-close" class="guestbook-close" title="关闭">×</button>
|
<button id="blog-posts-close" class="guestbook-close" title="关闭">×</button>
|
||||||
@@ -144,7 +144,7 @@
|
|||||||
|
|
||||||
<!-- 完整留言板弹窗(点击后显示) -->
|
<!-- 完整留言板弹窗(点击后显示) -->
|
||||||
<div id="guestbook-full-modal" class="guestbook-full-modal">
|
<div id="guestbook-full-modal" class="guestbook-full-modal">
|
||||||
<div class="full-modal-content">
|
<div class="full-modal-content solid-modal">
|
||||||
<div class="guestbook-header">
|
<div class="guestbook-header">
|
||||||
<h2 data-i18n="guestbook_title">留言板</h2>
|
<h2 data-i18n="guestbook_title">留言板</h2>
|
||||||
<button id="guestbook-close" class="guestbook-close" title="关闭">×</button>
|
<button id="guestbook-close" class="guestbook-close" title="关闭">×</button>
|
||||||
|
|||||||
@@ -226,7 +226,7 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(0, 0, 0, 0.15);
|
||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -246,15 +246,106 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 旅途剪影弹窗样式 - iOS 26 风格极致玻璃拟态 */
|
||||||
.full-modal-content {
|
.full-modal-content {
|
||||||
|
background: linear-gradient(
|
||||||
|
135deg,
|
||||||
|
rgba(255, 255, 255, 0.12) 0%,
|
||||||
|
rgba(255, 255, 255, 0.06) 50%,
|
||||||
|
rgba(255, 255, 255, 0.1) 100%
|
||||||
|
);
|
||||||
|
backdrop-filter: blur(80px) saturate(250%);
|
||||||
|
-webkit-backdrop-filter: blur(80px) saturate(250%);
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.45);
|
||||||
|
border-radius: 28px;
|
||||||
|
width: 95%;
|
||||||
|
max-width: 1400px;
|
||||||
|
max-height: 95vh;
|
||||||
|
overflow: hidden;
|
||||||
|
box-shadow:
|
||||||
|
0 32px 100px rgba(0, 0, 0, 0.25),
|
||||||
|
0 0 0 1px rgba(255, 255, 255, 0.3) inset,
|
||||||
|
inset 0 1px 1px rgba(255, 255, 255, 0.6),
|
||||||
|
inset 0 -1px 1px rgba(255, 255, 255, 0.15);
|
||||||
|
animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
|
||||||
|
position: relative;
|
||||||
|
isolation: isolate;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 顶部高光反射 - 增强版 */
|
||||||
|
.full-modal-content::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
height: 50%;
|
||||||
|
background: linear-gradient(180deg,
|
||||||
|
rgba(255, 255, 255, 0.5) 0%,
|
||||||
|
rgba(255, 255, 255, 0.2) 30%,
|
||||||
|
rgba(255, 255, 255, 0.05) 70%,
|
||||||
|
transparent 100%);
|
||||||
|
border-radius: 28px 28px 0 0;
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 底部环境光反射 */
|
||||||
|
.full-modal-content::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 10%;
|
||||||
|
right: 10%;
|
||||||
|
height: 80px;
|
||||||
|
background: radial-gradient(ellipse at center bottom,
|
||||||
|
rgba(255, 255, 255, 0.2) 0%,
|
||||||
|
transparent 60%);
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 侧边边缘反光 */
|
||||||
|
.full-modal-content .guestbook-header::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 20%;
|
||||||
|
left: 0;
|
||||||
|
bottom: 20%;
|
||||||
|
width: 2px;
|
||||||
|
background: linear-gradient(180deg,
|
||||||
|
transparent 0%,
|
||||||
|
rgba(255, 255, 255, 0.3) 30%,
|
||||||
|
rgba(255, 255, 255, 0.5) 50%,
|
||||||
|
rgba(255, 255, 255, 0.3) 70%,
|
||||||
|
transparent 100%);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 实心背景弹窗样式(留言板、博客文章专用) */
|
||||||
|
.full-modal-content.solid-modal {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
backdrop-filter: none;
|
||||||
|
-webkit-backdrop-filter: none;
|
||||||
|
border: none;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
width: 92%;
|
width: 92%;
|
||||||
max-width: 850px;
|
max-width: 850px;
|
||||||
max-height: 92vh;
|
max-height: 92vh;
|
||||||
overflow: hidden;
|
|
||||||
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
|
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
|
||||||
animation: slideUp 0.3s ease;
|
}
|
||||||
|
|
||||||
|
/* 隐藏弹窗内部滚动条 */
|
||||||
|
.guestbook-body {
|
||||||
|
padding: 0;
|
||||||
|
overflow-y: auto;
|
||||||
|
max-height: calc(95vh - 70px);
|
||||||
|
scrollbar-width: none; /* Firefox */
|
||||||
|
-ms-overflow-style: none; /* IE and Edge */
|
||||||
|
}
|
||||||
|
|
||||||
|
.guestbook-body::-webkit-scrollbar {
|
||||||
|
display: none; /* Chrome, Safari, Opera */
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes slideUp {
|
@keyframes slideUp {
|
||||||
@@ -356,41 +447,55 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.guestbook-header {
|
.guestbook-header {
|
||||||
padding: 16px 20px;
|
padding: 22px 30px;
|
||||||
border-bottom: 1px solid #f0f0f0;
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: rgba(255, 255, 255, 0.8);
|
background: transparent;
|
||||||
backdrop-filter: blur(10px);
|
position: relative;
|
||||||
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.guestbook-header h2 {
|
.guestbook-header h2 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 16px;
|
font-size: 24px;
|
||||||
color: #333;
|
color: #1a1a1a;
|
||||||
font-weight: 500;
|
font-weight: 700;
|
||||||
letter-spacing: 0.5px;
|
letter-spacing: 1.5px;
|
||||||
|
text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
.guestbook-close {
|
.guestbook-close {
|
||||||
background: none;
|
background: rgba(255, 255, 255, 0.25);
|
||||||
border: none;
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
||||||
font-size: 24px;
|
font-size: 28px;
|
||||||
color: #999;
|
color: #444;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: 24px;
|
width: 42px;
|
||||||
height: 24px;
|
height: 42px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
transition: color 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
|
border-radius: 50%;
|
||||||
|
backdrop-filter: blur(20px) saturate(150%);
|
||||||
|
-webkit-backdrop-filter: blur(20px) saturate(150%);
|
||||||
|
box-shadow:
|
||||||
|
0 2px 8px rgba(0, 0, 0, 0.1),
|
||||||
|
inset 0 1px 1px rgba(255, 255, 255, 0.5);
|
||||||
|
z-index: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.guestbook-close:hover {
|
.guestbook-close:hover {
|
||||||
color: #333;
|
background: rgba(255, 255, 255, 0.4);
|
||||||
|
color: #222;
|
||||||
|
transform: rotate(90deg) scale(1.05);
|
||||||
|
box-shadow:
|
||||||
|
0 4px 16px rgba(0, 0, 0, 0.15),
|
||||||
|
inset 0 1px 1px rgba(255, 255, 255, 0.6);
|
||||||
}
|
}
|
||||||
|
|
||||||
.guestbook-body {
|
.guestbook-body {
|
||||||
@@ -731,10 +836,95 @@
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 加载更多按钮 */
|
/* 分页导航样式 - 极致玻璃拟态 */
|
||||||
|
.pagination-container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12px;
|
||||||
|
padding: 30px 0;
|
||||||
|
background: transparent;
|
||||||
|
position: relative;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-btn {
|
||||||
|
width: 44px;
|
||||||
|
height: 44px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.4);
|
||||||
|
background: rgba(255, 255, 255, 0.15);
|
||||||
|
backdrop-filter: blur(20px) saturate(150%);
|
||||||
|
-webkit-backdrop-filter: blur(20px) saturate(150%);
|
||||||
|
border-radius: 14px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #333;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
box-shadow:
|
||||||
|
0 2px 8px rgba(0, 0, 0, 0.06),
|
||||||
|
inset 0 1px 1px rgba(255, 255, 255, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-btn:hover {
|
||||||
|
background: rgba(255, 255, 255, 0.35);
|
||||||
|
transform: translateY(-3px) scale(1.05);
|
||||||
|
box-shadow:
|
||||||
|
0 6px 20px rgba(0, 0, 0, 0.1),
|
||||||
|
inset 0 1px 1px rgba(255, 255, 255, 0.5);
|
||||||
|
border-color: rgba(255, 255, 255, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-num {
|
||||||
|
min-width: 44px;
|
||||||
|
height: 44px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-radius: 14px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #333;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
background: rgba(255, 255, 255, 0.15);
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.35);
|
||||||
|
padding: 0 12px;
|
||||||
|
backdrop-filter: blur(10px) saturate(150%);
|
||||||
|
-webkit-backdrop-filter: blur(10px) saturate(150%);
|
||||||
|
box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-num:hover {
|
||||||
|
background: rgba(255, 255, 255, 0.35);
|
||||||
|
border-color: rgba(255, 255, 255, 0.55);
|
||||||
|
transform: translateY(-2px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-num.active {
|
||||||
|
background: rgba(255, 255, 255, 0.45);
|
||||||
|
color: #1a1a1a;
|
||||||
|
cursor: default;
|
||||||
|
backdrop-filter: blur(15px) saturate(180%);
|
||||||
|
-webkit-backdrop-filter: blur(15px) saturate(180%);
|
||||||
|
box-shadow:
|
||||||
|
0 4px 16px rgba(0, 0, 0, 0.1),
|
||||||
|
inset 0 1px 1px rgba(255, 255, 255, 0.5);
|
||||||
|
border-color: rgba(255, 255, 255, 0.7);
|
||||||
|
font-weight: 700;
|
||||||
|
transform: translateY(-1px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-dots {
|
||||||
|
color: #777;
|
||||||
|
padding: 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 加载更多按钮样式(用于留言板等实心弹窗) */
|
||||||
.load-more-btn {
|
.load-more-btn {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 20px auto 20px auto;
|
margin: 20px auto;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border: 1px solid #e8e8e8;
|
border: 1px solid #e8e8e8;
|
||||||
color: #666;
|
color: #666;
|
||||||
@@ -752,12 +942,6 @@
|
|||||||
transform: translateY(-1px);
|
transform: translateY(-1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.load-more-btn:disabled {
|
|
||||||
color: #ccc;
|
|
||||||
border-color: #eee;
|
|
||||||
cursor: not-allowed;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 加载完成提示 */
|
/* 加载完成提示 */
|
||||||
.load-complete {
|
.load-complete {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@@ -832,11 +1016,11 @@
|
|||||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 旅途剪影瀑布流布局 */
|
/* 旅途剪影瀑布流布局 - 紧密贴住 */
|
||||||
.photo-album-grid {
|
.photo-album-grid {
|
||||||
column-count: 3;
|
column-count: 3;
|
||||||
column-gap: 15px;
|
column-gap: 0;
|
||||||
padding: 20px;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 1200px) {
|
@media (max-width: 1200px) {
|
||||||
@@ -848,28 +1032,25 @@
|
|||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.photo-album-grid {
|
.photo-album-grid {
|
||||||
column-count: 2;
|
column-count: 2;
|
||||||
column-gap: 10px;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.photo-album-item {
|
.photo-album-item {
|
||||||
break-inside: avoid;
|
break-inside: avoid;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border-radius: 12px;
|
border-radius: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
transition: transform 0.3s ease;
|
||||||
box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
box-shadow: none;
|
||||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
background-color: transparent;
|
||||||
background-color: #f0f0f0; /* 占位背景色 */
|
min-height: 0;
|
||||||
min-height: 200px; /* 最小高度,防止塌陷 */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.photo-album-item:hover {
|
.photo-album-item:hover {
|
||||||
transform: translateY(-5px) scale(1.02);
|
transform: scale(1.02);
|
||||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.photo-album-item img {
|
.photo-album-item img {
|
||||||
@@ -877,11 +1058,11 @@
|
|||||||
height: auto;
|
height: auto;
|
||||||
display: block;
|
display: block;
|
||||||
opacity: 0; /* 初始隐藏,加载完再显示 */
|
opacity: 0; /* 初始隐藏,加载完再显示 */
|
||||||
transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
|
transition: opacity 0.5s ease, transform 0.5s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.photo-album-item:hover img {
|
.photo-album-item:hover img {
|
||||||
transform: scale(1.1);
|
transform: scale(1.03);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 照片放大弹窗 */
|
/* 照片放大弹窗 */
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
const PHOTO_BASE_PATH = './static/img/photos/';
|
const PHOTO_BASE_PATH = './static/img/photos/';
|
||||||
|
|
||||||
// 分页加载配置
|
// 分页加载配置
|
||||||
const PAGE_SIZE = 10; // 每页加载数量
|
const PAGE_SIZE = 20; // 每页加载数量
|
||||||
let currentPage = 1; // 当前页码
|
let currentPage = 1; // 当前页码
|
||||||
let hasMore = true; // 是否还有更多数据
|
let hasMore = true; // 是否还有更多数据
|
||||||
let isLoading = false; // 是否正在加载中
|
let isLoading = false; // 是否正在加载中
|
||||||
@@ -95,42 +95,6 @@
|
|||||||
const endIndex = Math.min(currentPage * PAGE_SIZE, photos.length);
|
const endIndex = Math.min(currentPage * PAGE_SIZE, photos.length);
|
||||||
const currentPhotos = photos.slice(startIndex, endIndex);
|
const currentPhotos = photos.slice(startIndex, endIndex);
|
||||||
|
|
||||||
// 如果不是重置,先获取已有的网格容器
|
|
||||||
const existingGrid = !isReset ? document.querySelector('.photo-album-grid') : null;
|
|
||||||
|
|
||||||
if (existingGrid && !isReset) {
|
|
||||||
// 1. 彻底清理旧的按钮和提示
|
|
||||||
const oldControls = document.querySelectorAll('.load-more-btn, .load-complete');
|
|
||||||
oldControls.forEach(el => el.remove());
|
|
||||||
|
|
||||||
// 2. 追加新照片到现有网格
|
|
||||||
currentPhotos.forEach((photo, index) => {
|
|
||||||
const globalIndex = startIndex + index;
|
|
||||||
const div = document.createElement('div');
|
|
||||||
div.className = 'photo-album-item';
|
|
||||||
div.onclick = () => window.openPhotoLightbox(globalIndex);
|
|
||||||
div.innerHTML = `
|
|
||||||
<img src="${photo.src}" alt="照片 ${photo.id}" loading="lazy" onload="this.style.opacity=1">
|
|
||||||
`;
|
|
||||||
existingGrid.appendChild(div);
|
|
||||||
});
|
|
||||||
|
|
||||||
// 3. 添加新的按钮/提示
|
|
||||||
if (hasMore) {
|
|
||||||
const btn = document.createElement('button');
|
|
||||||
btn.className = 'load-more-btn';
|
|
||||||
btn.textContent = '点击加载更多';
|
|
||||||
btn.onclick = window.loadMorePhotos;
|
|
||||||
existingGrid.after(btn);
|
|
||||||
} else {
|
|
||||||
const tip = document.createElement('div');
|
|
||||||
tip.className = 'load-complete';
|
|
||||||
tip.textContent = '已显示全部';
|
|
||||||
existingGrid.after(tip);
|
|
||||||
}
|
|
||||||
return; // 提前返回
|
|
||||||
}
|
|
||||||
|
|
||||||
// 首次渲染:创建完整的 HTML
|
// 首次渲染:创建完整的 HTML
|
||||||
html = '<div class="photo-album-grid">';
|
html = '<div class="photo-album-grid">';
|
||||||
currentPhotos.forEach((photo, index) => {
|
currentPhotos.forEach((photo, index) => {
|
||||||
@@ -143,11 +107,36 @@
|
|||||||
});
|
});
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
// 添加加载更多按钮或提示
|
// 分页导航
|
||||||
if (hasMore) {
|
const totalPages = Math.ceil(photos.length / PAGE_SIZE);
|
||||||
html += `<button class="load-more-btn" onclick="window.loadMorePhotos()">点击加载更多</button>`;
|
if (totalPages > 1) {
|
||||||
} else {
|
html += '<div class="pagination-container">';
|
||||||
html += '<div class="load-complete">已显示全部</div>';
|
|
||||||
|
// 上一页
|
||||||
|
if (currentPage > 1) {
|
||||||
|
html += `<button class="page-btn" onclick="window.goToPhotoPage(${currentPage - 1})"><</button>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 页码
|
||||||
|
for (let i = 1; i <= totalPages; i++) {
|
||||||
|
if (i === currentPage) {
|
||||||
|
html += `<span class="page-num active">${i}</span>`;
|
||||||
|
} else {
|
||||||
|
// 只显示当前页附近的页码,避免太多
|
||||||
|
if (i === 1 || i === totalPages || (i >= currentPage - 2 && i <= currentPage + 2)) {
|
||||||
|
html += `<span class="page-num" onclick="window.goToPhotoPage(${i})">${i}</span>`;
|
||||||
|
} else if (i === currentPage - 3 || i === currentPage + 3) {
|
||||||
|
html += `<span class="page-dots">...</span>`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 下一页
|
||||||
|
if (currentPage < totalPages) {
|
||||||
|
html += `<button class="page-btn" onclick="window.goToPhotoPage(${currentPage + 1})">></button>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
html += '</div>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -313,6 +302,15 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// 跳转到指定页码
|
||||||
|
window.goToPhotoPage = function(page) {
|
||||||
|
if (page < 1 || page > Math.ceil(allPhotos.length / PAGE_SIZE)) return;
|
||||||
|
currentPage = page;
|
||||||
|
renderPhotos(allPhotos, false);
|
||||||
|
// 滚动到顶部
|
||||||
|
if (photoAlbumBody) photoAlbumBody.scrollTop = 0;
|
||||||
|
};
|
||||||
|
|
||||||
// DOM 加载完成后初始化
|
// DOM 加载完成后初始化
|
||||||
if (document.readyState === 'loading') {
|
if (document.readyState === 'loading') {
|
||||||
document.addEventListener('DOMContentLoaded', init);
|
document.addEventListener('DOMContentLoaded', init);
|
||||||
|
|||||||
Reference in New Issue
Block a user