SVG-Powered component to easily create placeholder loadings (like Facebook's cards loading).
npm i react-content-loader --save
yarn add react-content-loader
npm i react-content-loader react-native-svg --save
yarn add react-content-loader react-native-svg
CDN from JSDELIVR
There are two ways to use it:
1. Presets, see the examples:
import ContentLoader, { Facebook } from 'react-content-loader' const MyLoader = () => <ContentLoader /> const MyFacebookLoader = () => <Facebook />
2. Custom mode, see the online tool
const MyLoader = () => ( <ContentLoader viewBox="0 0 380 70"> {/* Only SVG shapes */} <rect x="0" y="0" rx="5" ry="5" width="70" height="70" /> <rect x="80" y="17" rx="4" ry="4" width="300" height="13" /> <rect x="80" y="40" rx="3" ry="3" width="250" height="10" /> </ContentLoader> )
Still not clear? Take a look at this working example at codesandbox.io Or try the components editable demo hands-on and install it from bit.dev
react-content-loader can be used with React Native in the same way as web version with the same import:
1. Presets, see the examples:
import ContentLoader, { Facebook } from 'react-content-loader/native' const MyLoader = () => <ContentLoader /> const MyFacebookLoader = () => <Facebook />
2. Custom mode
To create custom loaders there is an important difference: as React Native doesn't have any native module for SVG components, it's necessary to import the shapes from react-native-svg or use the named export Rect and Circle from react-content-loader import:
import ContentLoader, { Rect, Circle } from 'react-content-loader/native' const MyLoader = () => ( <ContentLoader viewBox="0 0 380 70"> <Circle cx="30" cy="30" r="30" /> <Rect x="80" y="17" rx="4" ry="4" width="300" height="13" /> <Rect x="80" y="40" rx="3" ry="3" width="250" height="10" /> </ContentLoader> )
| <div style="width:250px">Prop name and type</div> | Environment | Description |
|---|---|---|
animate?: boolean <br/> Defaults to true | React DOM<br/>React Native | Opt-out of animations with false |
title?: string <br/> Defaults to Loading... | React DOM only | It's used to describe what element it is. <br />Use '' (empty string) to remove. |
baseUrl?: string<br /> Defaults to an empty string | React DOM only | Required if you're using <base url="/" /> document <head/>. <br/>This prop is common used as: <br/><ContentLoader baseUrl={window.location.pathname} /> which will fill the SVG attribute with the relative path. Related #93. |
speed?: number <br /> Defaults to 1.2 | React DOM<br/>React Native | Animation speed in seconds. |
viewBox?: string <br /> Defaults to undefined | React DOM<br/>React Native | Use viewBox props to set a custom viewBox value, <br/>for more information about how to use it, <br/>read the article How to Scale SVG. |
gradientRatio?: number <br /> Defaults to 1.2 | React DOM only | Width of the animated gradient as a fraction of the view box width. |
rtl?: boolean <br /> Defaults to false | React DOM<br/>React Native | Content right-to-left. |
backgroundColor?: string <br /> Defaults to #f5f6f7 | React DOM<br/>React Native | Used as background of animation. |
foregroundColor?: string <br /> Defaults to #eee | React DOM<br/>React Native | Used as the foreground of animation. |
backgroundOpacity?: number <br /> Defaults to 1 | React DOM only | Background opacity (0 = transparent, 1 = opaque)<br/>used to solve an issue in Safari |
foregroundOpacity?: number <br /> Defaults to 1 | React DOM only | Animation opacity (0 = transparent, 1 = opaque)<br/>used to solve an issue in Safari |
style?: React.CSSProperties <br /> Defaults to {} | React DOM only | |
uniqueKey?: string <br /> Defaults to random unique id | React DOM only | Use the same value of prop key, <br/>that will solve inconsistency on the SSR, see more here. |
beforeMask?: JSX.Element <br /> Defaults to null | React DOM<br/>React Native | Define custom shapes before content, <br/>see more here. |
See all options live
<img alt="Facebook Style" src="https://user-images.githubusercontent.com/4838076/73212460-328f7500-4146-11ea-99e7-e19cd4e07a51.png" width="500px" />import { Facebook } from 'react-content-loader' const MyFacebookLoader = () => <Facebook />
<img alt="Instagram Style" src="https://user-images.githubusercontent.com/4838076/73212462-328f7500-4146-11ea-98dc-3a6aeafd4a26.png" width="500px" />import { Instagram } from 'react-content-loader' const MyInstagramLoader = () => <Instagram />
<img alt="Code Style" src="https://user-images.githubusercontent.com/4838076/73212459-328f7500-4146-11ea-89b0-1b7bbae8047b.png" width="500px" />import { Code } from 'react-content-loader' const MyCodeLoader = () => <Code />
<img alt="List Style" src="https://user-images.githubusercontent.com/4838076/73212463-33280b80-4146-11ea-9f93-95c2cbdef17b.png" width="500px" />import { List } from 'react-content-loader' const MyListLoader = () => <List />
<img alt="Bullet list Style" src="https://user-images.githubusercontent.com/4838076/73212458-328f7500-4146-11ea-826f-576059c4644e.png" width="500px" />import { BulletList } from 'react-content-loader' const MyBulletListLoader = () => <BulletList />
For the custom mode, use the online tool.
const MyLoader = () => ( <ContentLoader height={140} speed={1} backgroundColor={'#333'} foregroundColor={'#999'} viewBox="0 0 380 70" > {/* Only SVG shapes */} <rect x="0" y="0" rx="5" ry="5" width="70" height="70" /> <rect x="80" y="17" rx="4" ry="4" width="300" height="13" /> <rect x="80" y="40" rx="3" ry="3" width="250" height="10" /> </ContentLoader> )

In order to avoid unexpected behavior, the package doesn't have opinioned settings. So if it needs to be responsive, have in mind that the output of the package is a regular SVG, so it just needs the same attributes to become a regular SVG responsive, which means:
import { Code } from 'react-content-loader' const MyCodeLoader = () => ( <Code width={100} height={100} viewBox="0 0 100 100" style={{ width: '100%' }} /> )
As the main component generates random values to match the id of the SVG element with background style, it can encounter unexpected errors and unmatching warning on render, once the random value of id will be generated twice, in case of SSR: server and client; or in case of snapshot test: on the first match and re-running the test.
To fix it, set the prop uniqueKey, then the id will not be random anymore:
import { Facebook } from 'react-content-loader' const MyFacebookLoader = () => <Facebook uniqueKey="my-random-value" />
When using rgba as a backgroundColor or foregroundColor value, Safari does not respect the alpha channel, meaning that the color will be opaque. To prevent this, instead of using a rgba value for backgroundColor/foregroundColor, use the rgb equivalent and move the alpha channel value to the backgroundOpacity/foregroundOpacity props.
{/* Opaque color in Safari and iOS */} <ContentLoader backgroundColor="rgba(0,0,0,0.06)" foregroundColor="rgba(0,0,0,0.12)"> {/_ Semi-transparent color in Safari and iOS _/} <ContentLoader backgroundColor="rgb(0,0,0)" foregroundColor="rgb(0,0,0)" backgroundOpacity={0.06} foregroundOpacity={0.12}>
Using the base tag on a page that contains SVG elements fails to render and it looks like a black box. Just remove the base-href tag from the <head /> and the issue has been solved.
Old browsers don't support animation in SVG (compatibility list), and if your project must support IE, for examples, here's a couple of ways to make sure that browser supports SVG Animate:
window.SVGAnimateElementdocument.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#SVG-Animation", "1.1")Fork the repo and then clone it
$ git clone git@github.com:YourUsername/react-content-loader.git && cd react-content-loader
$ npm i: Install the dependencies;
$ npm run build: Build to production;
$ npm run dev: Run the Storybook to see your changes;
$ npm run test: Run all tests: type checking, unit tests on web and native;
$ npm run test:watch: Watch unit tests;
As React Native doesn't support symbolic links (to link the dependency to another folder) and as there is no playground to check your contributions (like storybook), this is recommended strategy to run the project locally:
yarn add react-content-loader react-native-svgreact-content-loader to the project just cloned, like:
import ContentLoader, { Rect, Circle } from './react-content-loader/native'

全球首个AI音乐社区
音述AI是全球首个AI音乐社区,致力让每个人都能用音乐表达自我。音述AI提供零门槛AI创作工具,独创GETI法则帮助用户精准定义音乐风格,AI润色功能支持自动优化作品质感。音述AI支持交流讨论、二次创作与价值变现。针对中文用户的语言习惯与文化背景进行专门优化,支持国风融合、C-pop等本土音乐标签,让技术更好地承载人文表达。


阿里Qoder团队推出的桌面端AI智能体
QoderWork 是阿里推出的本地优先桌面 AI 智能体,适配 macOS14+/Windows10+,以自然语言交互实现文件管理、数据分析、AI 视觉生成、浏览器自动化等办公任务,自主拆解执行复杂工作流,数据本地运行零上传,技能市场可无限扩展,是高效的 Agentic 生产力办公助手。


一站式搞定所有学习需求
不再被海量信息淹没,开始真正理解知识。Lynote 可摘要 YouTube 视频、PDF、文章等内容。即时创建笔记, 检测 AI 内容并下载资料,将您的学习效率提升 10 倍。


为AI短剧协作而生
专为AI短剧协作而生的AniShort正式发布,深度重构AI短剧全流程生产模式,整合创意策划、制作执行、实时协作、在线审片、资产复用等全链路功能,独创无限画布、双轨并行工业化工作流与Ani智能体助手,集成多款主流AI大模型,破解素材零散、版本混乱、沟通低效等行业痛点,助力3人团队效率提升800%,打造标准化、可追溯的AI短剧量产体系,是AI短剧团队协同创作、提升制作效率的核心工具。


能听懂你表达的视频模型
Seedance two是基于seedance2.0的中国大模型,支持图像、视频、音频、文本四种模态输入,表达方式更丰富,生成也更可控。


国内直接访问,限时3折
输入简单文字,生成想要的图片,纳米香蕉中文站基于 Google 模型的 AI 图片生成网站,支持文字生图、图生图。官网价格限时3折活动


职场AI,就用扣子
AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!


多风格AI绘画神器
堆友平台由阿里巴巴设计团队创建,作为一款AI驱动的设计工具,专为设计师提供一站式增长服务。功能覆盖海量3D素材、AI绘画、实时渲染以及专业抠图,显著提升设计品质和效率。平台不仅提供工具,还是一个促进创意交流和个人发展的空间,界面友好,适合所有级别的设计师和创意工作者。


零代码AI应用开发平台
零代码AI应用开发平台,用户只需一句话简单描述需求,AI能自动生成小程序、APP或H5网页应用,无需编写代码。


免费创建高清无水印Sora视频
Vora是一个免费创建高清无水印Sora视频的AI工具
最新AI工具、AI资讯
独家AI资源、AI项目落地

微信扫一扫关注公众号