mirror of
https://github.com/wgh136/nysoure.git
synced 2025-12-16 07:51:14 +00:00
improve UI
This commit is contained in:
@@ -26,13 +26,13 @@ export default function AboutPage() {
|
|||||||
return (
|
return (
|
||||||
<a
|
<a
|
||||||
className={
|
className={
|
||||||
"inline-block card card-border border-base-300 no-underline bg-base-200 hover:shadow transition-shadow"
|
"inline-block card card-border border-base-200 no-underline bg-base-100 shadow-xs hover:shadow-sm transition-shadow mr-1 sm:mr-2 mb-2 w-52 sm:w-64"
|
||||||
}
|
}
|
||||||
target={"_blank"}
|
target={"_blank"}
|
||||||
href={href}
|
href={href}
|
||||||
>
|
>
|
||||||
<figure className={"max-h-60 max-w-80"}>{img}</figure>
|
<figure className={"max-h-60 w-full"}>{img}</figure>
|
||||||
<div className={"card-body text-base-content text-lg"}>
|
<div className={"text-base-content text-lg p-4"}>
|
||||||
{second}
|
{second}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -1926,6 +1926,27 @@ function Gallery({ images, nsfw }: { images: number[], nsfw: number[] }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<dialog
|
||||||
|
id="fullscreen_image_dialog"
|
||||||
|
onClick={() => {
|
||||||
|
const dialog = document.getElementById("fullscreen_image_dialog") as HTMLDialogElement;
|
||||||
|
dialog.close();
|
||||||
|
}}
|
||||||
|
className="modal"
|
||||||
|
>
|
||||||
|
<div className="modal-box max-w-7xl w-full h-full max-h-screen p-4 bg-transparent shadow-none flex items-center justify-center">
|
||||||
|
<motion.img
|
||||||
|
src={network.getImageUrl(images[currentIndex])}
|
||||||
|
alt=""
|
||||||
|
className="max-w-full max-h-full object-contain rounded-xl"
|
||||||
|
initial={{ opacity: 0, scale: 0.8 }}
|
||||||
|
animate={{ opacity: 1, scale: 1 }}
|
||||||
|
exit={{ opacity: 0, scale: 0.8 }}
|
||||||
|
transition={{ duration: 0.2 }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</dialog>
|
||||||
<div
|
<div
|
||||||
className="relative w-full overflow-hidden rounded-xl bg-base-100-tr82 shadow-sm"
|
className="relative w-full overflow-hidden rounded-xl bg-base-100-tr82 shadow-sm"
|
||||||
style={{ aspectRatio: "16/9" }}
|
style={{ aspectRatio: "16/9" }}
|
||||||
@@ -1933,7 +1954,10 @@ function Gallery({ images, nsfw }: { images: number[], nsfw: number[] }) {
|
|||||||
onMouseLeave={() => setIsHovered(false)}
|
onMouseLeave={() => setIsHovered(false)}
|
||||||
>
|
>
|
||||||
{/* 图片区域 */}
|
{/* 图片区域 */}
|
||||||
<div ref={containerRef} className="w-full h-full relative">
|
<div ref={containerRef} className="w-full h-full relative" onClick={() => {
|
||||||
|
const dialog = document.getElementById("fullscreen_image_dialog") as HTMLDialogElement;
|
||||||
|
dialog.showModal();
|
||||||
|
}}>
|
||||||
{width > 0 && (
|
{width > 0 && (
|
||||||
<AnimatePresence initial={false} custom={direction} mode="sync">
|
<AnimatePresence initial={false} custom={direction} mode="sync">
|
||||||
<motion.div
|
<motion.div
|
||||||
@@ -2006,6 +2030,7 @@ function Gallery({ images, nsfw }: { images: number[], nsfw: number[] }) {
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2021,8 +2046,9 @@ function GalleryImage({src, nfsw}: {src: string, nfsw: boolean}) {
|
|||||||
/>
|
/>
|
||||||
{!show && (
|
{!show && (
|
||||||
<>
|
<>
|
||||||
<div className="absolute inset-0 bg-base-content/20 cursor-pointer" onClick={() => {
|
<div className="absolute inset-0 bg-base-content/20 cursor-pointer" onClick={(event) => {
|
||||||
setShow(true)
|
setShow(true)
|
||||||
|
event.stopPropagation();
|
||||||
}} />
|
}} />
|
||||||
<div className="absolute top-4 left-4">
|
<div className="absolute top-4 left-4">
|
||||||
<Badge className="badge-error shadow-lg">
|
<Badge className="badge-error shadow-lg">
|
||||||
|
|||||||
Reference in New Issue
Block a user