This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update next/image docs and example with shimmer animation (vercel#26183)
It was mentioned in Issue vercel#18858 that we might add a `placeholder="skeleton"` but that didn't ship with Next.js 11 because it would likely need to handle additional config such as light mode / dark mode, speed, duration, etc. So this PR adds an example of `blurDataURL` usage with a nice shimmer animation (sometimes called a skeleton).
- Loading branch information
Showing
4 changed files
with
58 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import Image from 'next/image' | ||
import ViewSource from '../components/view-source' | ||
|
||
const shimmer = (w, h) => ` | ||
<svg width="${w}" height="${h}" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
<defs> | ||
<linearGradient id="g"> | ||
<stop stop-color="#333" offset="20%" /> | ||
<stop stop-color="#222" offset="50%" /> | ||
<stop stop-color="#333" offset="70%" /> | ||
</linearGradient> | ||
</defs> | ||
<rect width="${w}" height="${h}" fill="#333" /> | ||
<rect id="r" width="${w}" height="${h}" fill="url(#g)" /> | ||
<animate xlink:href="#r" attributeName="x" from="-${w}" to="${w}" dur="1s" repeatCount="indefinite" /> | ||
</svg>` | ||
|
||
const toBase64 = (str) => | ||
typeof window === 'undefined' | ||
? Buffer.from(str).toString('base64') | ||
: window.btoa(str) | ||
|
||
const Shimmer = () => ( | ||
<div> | ||
<ViewSource pathname="pages/shimmer.js" /> | ||
<h1>Image Component With Shimmer Data URL</h1> | ||
<Image | ||
alt="Mountains" | ||
src="/mountains.jpg" | ||
placeholder="blur" | ||
blurDataURL={`data:image/svg+xml;base64,${toBase64(shimmer(700, 475))}`} | ||
width={700} | ||
height={475} | ||
/> | ||
</div> | ||
) | ||
|
||
export default Shimmer |