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 ? (