diff --git a/pages/design-system/animation.js b/pages/design-system/animation.js index cd66c84a..aca85bc1 100644 --- a/pages/design-system/animation.js +++ b/pages/design-system/animation.js @@ -26,6 +26,7 @@ const DSpage = () => { const [StartAnim17, setStartAnim17] = useState(false); const [StartAnim18, setStartAnim18] = useState(false); const [StartAnim19, setStartAnim19] = useState(false); + const [StartAnim20, setStartAnim20] = useState(false); function handleStartAnim1() { setStartAnim1(true); @@ -148,6 +149,13 @@ const DSpage = () => { }, 1600); return () => clearTimeout(timer); } + function handleStartAnim20() { + setStartAnim20(true); + const timer = setTimeout(() => { + setStartAnim20(false); + }, 2000); + return () => clearTimeout(timer); + } return ( <> @@ -1101,6 +1109,40 @@ const DSpage = () => { + {/* Block reveal */} +