From 3042dea8868c366c3322b4d1b27da01574d6c762 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 29 Sep 2023 21:02:29 +0800 Subject: [PATCH] Allow GIFs play on focus/blur too --- src/components/media.jsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/components/media.jsx b/src/components/media.jsx index a1a376de..37c4b7fc 100644 --- a/src/components/media.jsx +++ b/src/components/media.jsx @@ -321,6 +321,20 @@ function Media({ media, to, showOriginal, autoAnimate, onClick = () => {} }) { } catch (e) {} } }} + onFocus={() => { + if (hoverAnimate) { + try { + videoRef.current.play(); + } catch (e) {} + } + }} + onBlur={() => { + if (hoverAnimate) { + try { + videoRef.current.pause(); + } catch (e) {} + } + }} > {showOriginal || autoGIFAnimate ? ( isGIF && showOriginal ? (