fun feat
This commit is contained in:
parent
425c21182f
commit
991bc55102
4 changed files with 69 additions and 17 deletions
|
|
@ -10,7 +10,10 @@ export default function DraggableWindow() {
|
|||
const [position, setPosition] = useState({ x: 100, y: 100 });
|
||||
const [isDragging, setIsDragging] = useState(false);
|
||||
const [dragOffset, setDragOffset] = useState({ x: 0, y: 0 });
|
||||
const [isNadaeVisible, setIsNadaeVisible] = useState(false);
|
||||
const windowRef = useRef<HTMLDivElement>(null);
|
||||
const audioRef = useRef<HTMLAudioElement | null>(null);
|
||||
const nadaeTimeoutRef = useRef<ReturnType<typeof setTimeout> | null>(null);
|
||||
|
||||
const handleMouseDown = (e: React.MouseEvent) => {
|
||||
setIsDragging(true);
|
||||
|
|
@ -23,6 +26,26 @@ export default function DraggableWindow() {
|
|||
}
|
||||
};
|
||||
|
||||
const handleActivate = () => {
|
||||
if (!audioRef.current) {
|
||||
audioRef.current = new Audio('/audio.opus');
|
||||
}
|
||||
|
||||
audioRef.current.currentTime = 0;
|
||||
void audioRef.current.play();
|
||||
|
||||
setIsNadaeVisible(true);
|
||||
|
||||
if (nadaeTimeoutRef.current) {
|
||||
clearTimeout(nadaeTimeoutRef.current);
|
||||
}
|
||||
|
||||
nadaeTimeoutRef.current = setTimeout(() => {
|
||||
setIsNadaeVisible(false);
|
||||
nadaeTimeoutRef.current = null;
|
||||
}, 1000);
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
const handleMouseMove = (e: MouseEvent) => {
|
||||
if (!isDragging) return;
|
||||
|
|
@ -48,34 +71,49 @@ export default function DraggableWindow() {
|
|||
};
|
||||
}, [isDragging, dragOffset]);
|
||||
|
||||
useEffect(() => {
|
||||
return () => {
|
||||
audioRef.current?.pause();
|
||||
audioRef.current = null;
|
||||
|
||||
if (nadaeTimeoutRef.current) {
|
||||
clearTimeout(nadaeTimeoutRef.current);
|
||||
}
|
||||
};
|
||||
}, []);
|
||||
|
||||
return (
|
||||
isMobile ? (
|
||||
<figure className="mb-8 w-full h-auto">
|
||||
<picture className="block bg-gray-100 rounded-xl aspect-3-2 overflow-hidden image-scale object-shadowed">
|
||||
<Image
|
||||
src="/full.webp"
|
||||
alt="Banner"
|
||||
width={1200}
|
||||
height={400}
|
||||
priority
|
||||
className="object-cover object-center transition-transform duration-300 hover:scale-105"
|
||||
/>
|
||||
</picture>
|
||||
<button
|
||||
type="button"
|
||||
className="block w-full rounded-xl text-left"
|
||||
>
|
||||
<picture className="block bg-gray-100 rounded-xl aspect-3-2 overflow-hidden image-scale object-shadowed">
|
||||
<Image
|
||||
src={'/full.webp'}
|
||||
alt="Banner"
|
||||
width={1200}
|
||||
height={400}
|
||||
priority
|
||||
className="object-cover object-center transition-transform duration-300 hover:scale-105"
|
||||
/>
|
||||
</picture>
|
||||
</button>
|
||||
</figure >
|
||||
) : (
|
||||
isVisible && (
|
||||
<div
|
||||
ref={windowRef}
|
||||
className="fixed cursor-move select-none"
|
||||
className="fixed cursor-pointer select-none"
|
||||
style={{
|
||||
left: `${position.x}px`,
|
||||
top: `${position.y}px`,
|
||||
}}
|
||||
onMouseDown={handleMouseDown}
|
||||
>
|
||||
<div className="relative w-fit h-fit">
|
||||
<Image
|
||||
src="/window.webp"
|
||||
src={isNadaeVisible ? '/image.png' : '/window.webp'}
|
||||
alt="Draggable Window"
|
||||
width={500}
|
||||
height={400}
|
||||
|
|
@ -83,8 +121,19 @@ export default function DraggableWindow() {
|
|||
draggable={false}
|
||||
/>
|
||||
<button
|
||||
onClick={() => setIsVisible(false)}
|
||||
className="absolute top-1 right-2 w-5 h-5 cursor-pointer"
|
||||
type="button"
|
||||
onMouseDown={handleMouseDown}
|
||||
onClick={handleActivate}
|
||||
className="absolute inset-0 cursor-pointer"
|
||||
aria-label="Play audio"
|
||||
/>
|
||||
<button
|
||||
type="button"
|
||||
onClick={(e) => {
|
||||
e.stopPropagation();
|
||||
setIsVisible(false);
|
||||
}}
|
||||
className="absolute top-1 right-2 z-10 w-5 h-5 cursor-pointer"
|
||||
aria-label="Close window"
|
||||
/>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue