//렌더링
<SlideTextContainer>
<MotionSlideText direction={false} text={slideText}></MotionSlideText>
<MotionSlideText direction={true} text={slideText}></MotionSlideText>
<MotionSlideText direction={false} text={slideText}></MotionSlideText>
</SlideTextContainer>;
// 스타일 밑 컴포넌트
const PromotionContainer = styled.div`
background-color: #4d207a;
width: 100%;
height: 150px;
display: flex;
flex-direction: column;
justify-content: center;
`;
const SlideTextContainer = styled(PromotionContainer)`
overflow-x: hidden;
display: flex;
flex-direction: column;
`;
const SlideText = styled.div`
white-space: nowrap;
`;
const MotionSlideText = ({ direction, text }) => {
const start = direction ? -2000 : 0;
const end = direction ? 0 : -2000;
return (
<div>
<motion.div initial={{ x: start }} animate={{ x: end }} transition={{ duration: 180 }}>
<SlideText>{text}</SlideText>
</motion.div>
</div>
);
};
'프론트엔드 > Component' 카테고리의 다른 글
리액트 모바일 슬라이더 라이브러리 (0) | 2024.03.13 |
---|---|
[Component] Mui 캐러셀 (0) | 2024.02.26 |
[Component] 리액트 전환 스위치 컴포넌트 (0) | 2023.12.28 |
[Component] MUI를 이용한 채팅 박스 컴포넌트 (0) | 2023.08.11 |