1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
import { useEffect, useRef, useState } from 'react';
import './active.css';
function Home() {
const [index, setIndex] = useState(0);
const colors = ['#FF0000', '#00FF00', '#0000FF'];
const timeout = useRef(0);
useEffect(() => {
resetTimeout();
timeout.current = window.setTimeout(
() =>
setIndex((prevIndex) =>
prevIndex === colors.length - 1 ? 0 : prevIndex + 1
),
2500
);
return () => {
resetTimeout();
};
}, [index]);
const resetTimeout = () => {
if (timeout.current) {
clearTimeout(timeout.current);
}
};
return (
<div style={{ margin: 'auto', overflow: 'hidden' }}>
<div
style={{
whiteSpace: 'nowrap',
transform: `translateX(${-index * 100}%)`,
transition: 'ease 1000ms',
}}
>
{colors.map((backgroundColor, colorIndex) => (
<div
key={colorIndex}
style={{
display: 'inline-block',
backgroundColor,
height: '80vh',
width: '100%',
}}
/>
))}
</div>
<div style={{ display: 'flex', justifyContent: 'center' }}>
{colors.map((_, colorIndex) => (
<div
key={colorIndex}
style={{
height: '0.75rem',
width: '0.75rem',
borderRadius: '50%',
margin: '0.75rem',
}}
className={colorIndex === index ? 'active' : 'inactive'}
onClick={() => {
setIndex(colorIndex);
}}
/>
))}
</div>
</div>
);
}
export default Home;
|