mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Animate show/hide
This commit is contained in:
parent
a26097ffd4
commit
a172322a54
1 changed files with 13 additions and 9 deletions
|
@ -1,3 +1,4 @@
|
|||
import classNames from "classnames";
|
||||
import Fuse from "fuse.js";
|
||||
import { type DragEvent, useMemo, useRef, useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
@ -194,16 +195,19 @@ export function CaptionsView({ id }: { id: string }) {
|
|||
return (
|
||||
<>
|
||||
<div>
|
||||
{dragging && (
|
||||
<div className="absolute inset-0 flex items-center justify-center text-white z-10 pointer-events-none">
|
||||
<div
|
||||
className={classNames(
|
||||
"absolute inset-0 flex items-center justify-center text-white z-10 pointer-events-none transition-opacity duration-300",
|
||||
dragging ? "opacity-100" : "opacity-0",
|
||||
)}
|
||||
>
|
||||
<div className="flex flex-col items-center">
|
||||
<Icon className="text-5xl mb-8" icon={Icons.FILE} />
|
||||
<Icon className="text-5xl mb-4" icon={Icons.FILE} />
|
||||
<span className="text-xl weight font-medium">
|
||||
{t("player.menus.subtitles.dropSubtitleFile")}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<Menu.BackLink
|
||||
onClick={() => router.navigate("/")}
|
||||
|
|
Loading…
Reference in a new issue