mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-22 18:26:39 +02:00
102 lines
3.4 KiB
TypeScript
102 lines
3.4 KiB
TypeScript
/**
|
|
* A collection of popular layouts and patterns made with CSS (https://csslayout.io)
|
|
* (c) 2019 - 2020 Nguyen Huu Phuoc <https://twitter.com/nghuuphuoc>
|
|
*/
|
|
|
|
import React, { useState } from 'react';
|
|
import { Helmet } from 'react-helmet';
|
|
import Pattern from '../../constants/Pattern';
|
|
|
|
import useInterval from '../../hooks/useInterval';
|
|
import DetailsLayout from '../../layouts/DetailsLayout';
|
|
import BrowserFrame from '../../placeholders/BrowserFrame';
|
|
|
|
const Details: React.FC<{}> = () => {
|
|
const [progress, setProgress] = useState(0);
|
|
useInterval(() => {
|
|
setProgress((v) => v === 100 ? 0 : v + 1);
|
|
}, 1 * 100);
|
|
|
|
return (
|
|
<DetailsLayout pattern={Pattern.ProgressBar}>
|
|
<Helmet>
|
|
<meta name="description" content="Create a progress bar with CSS flexbox" />
|
|
<meta name="keywords" content="css flexbox, css progress bar" />
|
|
</Helmet>
|
|
<div className='p-8 pb-20'>
|
|
<BrowserFrame
|
|
content={(
|
|
<div
|
|
style={{
|
|
alignItems: 'center',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
height: '100%',
|
|
justifyContent: 'center',
|
|
padding: '8px',
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
backgroundColor: 'rgba(0, 0, 0, 0.1)',
|
|
borderRadius: '9999px',
|
|
height: '16px',
|
|
width: '50%',
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
alignItems: 'center',
|
|
backgroundColor: '#357EDD',
|
|
borderRadius: '9999px',
|
|
color: '#FFF',
|
|
display: 'flex',
|
|
fontSize: '12px',
|
|
height: '100%',
|
|
justifyContent: 'center',
|
|
padding: '4px',
|
|
width: `${progress}%`,
|
|
}}
|
|
>
|
|
{progress}%
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
source={`
|
|
<div style="
|
|
/* Colors */
|
|
background-color: rgba(0, 0, 0, .1);
|
|
|
|
/* Rounded border */
|
|
border-radius: 9999px;
|
|
">
|
|
<div style="
|
|
/* Center the content */
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
/* Colors */
|
|
background-color: #357edd;
|
|
color: #fff;
|
|
|
|
/* Rounded border */
|
|
border-radius: 9999px;
|
|
|
|
/* Width based on the number of percentages */
|
|
width: 40%;
|
|
">
|
|
<!-- The number of percentages -->
|
|
40%
|
|
</div>
|
|
</div>
|
|
`}
|
|
/>
|
|
</div>
|
|
</DetailsLayout>
|
|
);
|
|
};
|
|
|
|
export default Details;
|