ReactJs의 Instagram 스타일 스토리
6507 단어 webdevjavascriptreact
몇 초 만에 웹 애플리케이션에 스토리 형식을 추가할 수 있는 간단한 스토리 구성 요소를 만들었습니다.
소개합니다Stories-React .
설치
npm install --save stories-react
용법
import React from "react";
import Stories from "stories-react";
import "stories-react/dist/index.css";
function ImagesStories() {
const stories = [
{
type: "image",
url:
"https://images.pexels.com/photos/9470805/pexels-photo-9470805.jpeg?w=300",
duration: 5000
},
{
type: "image",
duration: 6000,
url:
"https://images.pexels.com/photos/9733197/pexels-photo-9733197.jpeg?w=300"
},
{
duration: 7000,
type: "image",
url:
"https://images.pexels.com/photos/10964888/pexels-photo-10964888.jpeg?w=300"
},
{
type: "image",
duration: 6000,
url:
"https://images.pexels.com/photos/10985425/pexels-photo-10985425.jpeg?w=300"
},
{
type: "image",
url:
"https://images.pexels.com/photos/9470805/pexels-photo-9470805.jpeg?w=300",
duration: 5000
},
{
type: "image",
duration: 6000,
url:
"https://images.pexels.com/photos/9733197/pexels-photo-9733197.jpeg?w=300"
}
];
return <Stories width="400px" height="600px" stories={stories} />;
}
export default function App() {
return (
<div className="App">
<ImagesStories />
</div>
);
}
데모
CodeSandbox demo
All Story type demos
참조
Reference
이 문제에 관하여(ReactJs의 Instagram 스타일 스토리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/hannadrehman/instagram-style-stories-in-reactjs-59d9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)