反応負荷素子(気泡スタイル)の開発
ユーザー体験で開発しなければならない構成部品であるロード構成部品をbubbleバージョンに作成してみます.
emotionキーを使用して、ロード中の状態をcssのみで表すように作成しました.
import { keyframes } from '@emotion/react';
import styled from '@emotion/styled';
const bubble = keyframes`
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em;
}
40% {
box-shadow: 0 2.5em 0 0;
}
`;
const Container = styled.div({
width: '80px',
margin: '0 auto',
});
const BoxStyle = styled.div({
float: 'left',
width: '30%',
padding: '5px',
});
const LoadingIcon = styled.div({
width: '20px',
height: '20px',
borderRadius: '100%',
animation: `${bubble} 3s ease infinite`,
});
export default function Loading() {
return (
<>
<Container>
<BoxStyle>
<LoadingIcon />
</BoxStyle>
<BoxStyle>
<LoadingIcon />
</BoxStyle>
<BoxStyle>
<LoadingIcon />
</BoxStyle>
</Container>
</>
);
}
Reference
この問題について(反応負荷素子(気泡スタイル)の開発), 我々は、より多くの情報をここで見つけました https://velog.io/@seong-dodo/리액트-로딩-컴포넌트-개발-bubble-스타일テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol