Make GIF autoplay on Mobile Safari
Only in carousel, and seems like `autoplay` with `muted` ain't working in (P)react.
This commit is contained in:
parent
23a6cdbe3b
commit
422a924844
1 changed files with 21 additions and 25 deletions
|
@ -759,19 +759,10 @@ function Media({ media, showOriginal, onClick = () => {} }) {
|
||||||
rgbAverageColor && `rgb(${rgbAverageColor.join(',')})`,
|
rgbAverageColor && `rgb(${rgbAverageColor.join(',')})`,
|
||||||
}}
|
}}
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (isGIF) {
|
if (!showOriginal && isGIF) {
|
||||||
// Hmm, the videoRef might conflict here
|
|
||||||
if (showOriginal) {
|
|
||||||
try {
|
try {
|
||||||
if (videoRef.current.paused) {
|
|
||||||
videoRef.current.play();
|
|
||||||
} else {
|
|
||||||
videoRef.current.pause();
|
videoRef.current.pause();
|
||||||
}
|
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
} else {
|
|
||||||
videoRef.current.pause();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
onClick(e);
|
onClick(e);
|
||||||
}}
|
}}
|
||||||
|
@ -791,19 +782,24 @@ function Media({ media, showOriginal, onClick = () => {} }) {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{showOriginal ? (
|
{showOriginal ? (
|
||||||
|
<div
|
||||||
|
dangerouslySetInnerHTML={{
|
||||||
|
__html: `
|
||||||
<video
|
<video
|
||||||
ref={videoRef}
|
src="${url}"
|
||||||
src={url}
|
poster="${previewUrl}"
|
||||||
poster={previewUrl}
|
width="${width}"
|
||||||
width={width}
|
height="${height}"
|
||||||
height={height}
|
|
||||||
preload="auto"
|
preload="auto"
|
||||||
autoplay
|
autoplay
|
||||||
muted={isGIF}
|
muted="${isGIF}"
|
||||||
controls={!isGIF}
|
${isGIF ? '' : 'controls'}
|
||||||
playsinline
|
playsinline
|
||||||
loop={loopable}
|
loop="${loopable}"
|
||||||
></video>
|
></video>
|
||||||
|
`,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
) : isGIF ? (
|
) : isGIF ? (
|
||||||
<video
|
<video
|
||||||
ref={videoRef}
|
ref={videoRef}
|
||||||
|
|
Loading…
Add table
Reference in a new issue