├── .gitignore ├── .prettierrc ├── .storybook ├── main.js ├── preview-head.html └── preview.js ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── assets │ ├── profile-with-circle.jpg │ └── sheep.png ├── components │ ├── Accordion │ │ ├── Accordion.tsx │ │ └── index.ts │ ├── AnimatedEyesFollowMouseCursor │ │ ├── AnimatedEyesFollowMouseCursor.tsx │ │ └── index.ts │ ├── Banners │ │ ├── AnimatedBanner1.tsx │ │ ├── Banners.tsx │ │ ├── index.ts │ │ └── type.ts │ ├── Canvas │ │ ├── BouncingBall │ │ │ ├── Ball.ts │ │ │ ├── Block.ts │ │ │ ├── BouncingBall.tsx │ │ │ └── index.ts │ │ ├── MovingBox │ │ │ ├── Dialog.ts │ │ │ ├── MovingBox.tsx │ │ │ ├── Point.ts │ │ │ └── index.ts │ │ ├── MovingGradation │ │ │ ├── GlowParticle.ts │ │ │ ├── MovingGradation.tsx │ │ │ ├── constants.ts │ │ │ └── index.ts │ │ ├── RotatingPolygon │ │ │ ├── Polygon.ts │ │ │ ├── RotatingPolygon.tsx │ │ │ └── index.ts │ │ ├── Wavy │ │ │ ├── Point.ts │ │ │ ├── Wave.ts │ │ │ ├── WaveGroup.ts │ │ │ ├── Wavy.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── ClimbEffects │ │ ├── ClimbEffects.tsx │ │ ├── README.md │ │ └── index.ts │ ├── ClipPathCircle │ │ ├── ClipPathCircle.tsx │ │ └── index.ts │ ├── CustomScrollbar │ │ ├── CustomScrollbar.tsx │ │ └── index.ts │ ├── Drag │ │ ├── DragItem.tsx │ │ ├── DragItemList.tsx │ │ └── index.ts │ ├── Dropdown │ │ ├── Dropdown.tsx │ │ └── index.ts │ ├── FakeScrollSpy │ │ ├── FakeScrollSpy.tsx │ │ └── index.ts │ ├── GhostText │ │ ├── GhostText.tsx │ │ └── index.ts │ ├── GlowingBackground │ │ ├── GlowingBackground.tsx │ │ └── index.ts │ ├── GlowingCheckbox │ │ ├── GlowingCheckbox.tsx │ │ └── index.ts │ ├── GlowingRadio │ │ ├── GlowingRadio.tsx │ │ └── index.ts │ ├── GlowingText │ │ ├── GlowingText.tsx │ │ ├── README.md │ │ └── index.ts │ ├── HalfCircularBackground │ │ ├── HalfCircularBackground.tsx │ │ └── index.ts │ ├── HeartAnimation │ │ ├── HeartAnimation.tsx │ │ └── index.ts │ ├── HideScrollOnScrollDown │ │ ├── HideScrollOnScrollDown.tsx │ │ └── index.ts │ ├── HoverEffectCard │ │ ├── HoverEffectCard.tsx │ │ └── index.ts │ ├── ListHoverEffects │ │ ├── ListHoverEffects.tsx │ │ └── index.ts │ ├── Loader │ │ ├── GradientLoader.tsx │ │ ├── Loader.tsx │ │ ├── TwoRingLoader.tsx │ │ └── index.ts │ ├── LongTextShadow │ │ ├── LongTextShadow.tsx │ │ └── index.ts │ ├── Menu │ │ ├── Menu.tsx │ │ ├── MenuItem.tsx │ │ └── index.ts │ ├── MiniWavy │ │ ├── MiniWavy.tsx │ │ └── index.ts │ ├── Modal │ │ ├── Modal.tsx │ │ └── index.ts │ ├── MouseCursor │ │ ├── DotMouseCursor.tsx │ │ └── index.ts │ ├── MoveSheep │ │ ├── Hill.ts │ │ ├── MoveSheep.tsx │ │ ├── Sheep.ts │ │ ├── SheepController.ts │ │ ├── Sun.ts │ │ └── index.ts │ ├── MovingText │ │ ├── MovingText.tsx │ │ └── index.ts │ ├── NeonButton │ │ ├── NeonButton.tsx │ │ └── index.ts │ ├── NumberCounter │ │ ├── NumberCounter.tsx │ │ └── index.ts │ ├── PasswordInput │ │ ├── PasswordInput.tsx │ │ └── index.ts │ ├── Portal │ │ ├── Portal.tsx │ │ └── index.ts │ ├── RangeInput │ │ ├── RangeInput.tsx │ │ └── index.ts │ ├── RippleEffectsButton │ │ ├── RippleEffectsButton.tsx │ │ └── index.ts │ ├── ScrollDownIndicator │ │ ├── ScrollDownIndicator.tsx │ │ └── index.ts │ ├── ScrollProgressBar │ │ ├── ScrollProgressBar.tsx │ │ └── index.ts │ ├── ShadowEffects │ │ ├── ShadowEffects.tsx │ │ └── index.ts │ ├── SidebarMenu │ │ ├── SidebarMenu.tsx │ │ └── index.ts │ ├── Skeleton │ │ ├── Skeleton.tsx │ │ ├── Skeleton2.tsx │ │ └── index.ts │ ├── SlidingMenuIndicator │ │ ├── SlidingMenuIndicator.tsx │ │ └── index.ts │ ├── StickyElementsScrollingEffects │ │ ├── StickyElementsScrollingEffects.tsx │ │ └── index.ts │ ├── TextArea │ │ ├── TextArea.tsx │ │ └── index.ts │ ├── TextTyping │ │ ├── TextTyping.tsx │ │ └── index.ts │ ├── ThreeDimensionBackground │ │ ├── ThreeDimensionBackground.tsx │ │ └── index.ts │ ├── ThreeDimensionDebitCard │ │ ├── ThreeDimensionDebitCard.tsx │ │ └── index.ts │ ├── Timeline │ │ ├── Timeline.tsx │ │ └── index.ts │ ├── Tooltip │ │ ├── Tooltip.tsx │ │ ├── TooltipWithPortal.tsx │ │ └── index.ts │ ├── WaveBorderCard │ │ ├── WaveBorderCard.tsx │ │ └── index.ts │ ├── WavySection │ │ ├── WavySection.tsx │ │ └── index.ts │ ├── WebGlAndThreeJS │ │ ├── BasicScene.tsx │ │ ├── BasicScene2.tsx │ │ ├── BasicScene3.tsx │ │ └── index.ts │ └── index.ts ├── hooks │ └── useScreenSize.ts ├── index.css ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── stories │ ├── Accordion.stories.tsx │ ├── AnimatedEyesFollowMouseCursor.stories.tsx │ ├── Banners.stories.tsx │ ├── ClimbEffects.stories.tsx │ ├── ClipPathCircle.stories.tsx │ ├── CustomScrollbar.stories.tsx │ ├── Drag.stories.tsx │ ├── DropDown.stories.tsx │ ├── FakeScrollSpy.stories.tsx │ ├── GhostText.stories.tsx │ ├── GlowingBackground.stories.tsx │ ├── GlowingCheckbox.stories.tsx │ ├── GlowingText.stories.tsx │ ├── HalfCircularBackground.stories.tsx │ ├── HeartAnimation.stories.tsx │ ├── HideScrollOnScrollDown.stories.tsx │ ├── HoverEffectCard.stories.tsx │ ├── Introduction.stories.mdx │ ├── ListHoverEffects.stories.tsx │ ├── Loader.stories.tsx │ ├── LongBoxShadow.stories.tsx │ ├── Menu.stories.tsx │ ├── MiniWavy.stories.tsx │ ├── Modal.stories.tsx │ ├── MouseCursor.stories.tsx │ ├── MovingText.stories.tsx │ ├── NeonButton.stories.tsx │ ├── NumberCounter.stories.tsx │ ├── PasswordInput.stories.tsx │ ├── RangeInput.stories.tsx │ ├── RippleEffectsButton.stories.tsx │ ├── ScrollDownIndicator.stories.tsx │ ├── ScrollProgressBar.stories.tsx │ ├── ShadowEffects.stories.tsx │ ├── SidebarMenu.stories.tsx │ ├── Skeleton.stories.tsx │ ├── SlidingMenuIndicator.stories.tsx │ ├── StickyElementsScrollingEffects.stories.tsx │ ├── TextArea.stories.tsx │ ├── TextTyping.stories.tsx │ ├── ThreeDimensionBackground.stories.tsx │ ├── ThreeDimensionDebitCard.stories.tsx │ ├── Timeline.stories.tsx │ ├── Tooltip.stories.tsx │ ├── WaveBorderCard.stories.tsx │ ├── WavySection.stories.tsx │ ├── assets │ │ ├── code-brackets.svg │ │ ├── colors.svg │ │ ├── comments.svg │ │ ├── direction.svg │ │ ├── flow.svg │ │ ├── plugin.svg │ │ ├── repo.svg │ │ └── stackalt.svg │ ├── canvasTutorial │ │ ├── BouncingBall.stories.tsx │ │ ├── MoveSheep.stories.tsx │ │ ├── MovingBox.stories.tsx │ │ ├── MovingGradation.stories.tsx │ │ ├── Readme.stories.mdx │ │ ├── RotatingPolygon.stories.tsx │ │ └── Wavy.stories.tsx │ ├── dummy │ │ └── dummyData.js │ └── threejs │ │ └── BasicScene.stories.tsx └── utils │ ├── DomUtils.ts │ ├── RefUtils.ts │ ├── WebGLUtils.ts │ └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/profile-with-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/assets/profile-with-circle.jpg -------------------------------------------------------------------------------- /src/assets/sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/assets/sheep.png -------------------------------------------------------------------------------- /src/components/Accordion/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Accordion/Accordion.tsx -------------------------------------------------------------------------------- /src/components/Accordion/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Accordion'; 2 | -------------------------------------------------------------------------------- /src/components/AnimatedEyesFollowMouseCursor/AnimatedEyesFollowMouseCursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/AnimatedEyesFollowMouseCursor/AnimatedEyesFollowMouseCursor.tsx -------------------------------------------------------------------------------- /src/components/AnimatedEyesFollowMouseCursor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AnimatedEyesFollowMouseCursor'; 2 | -------------------------------------------------------------------------------- /src/components/Banners/AnimatedBanner1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Banners/AnimatedBanner1.tsx -------------------------------------------------------------------------------- /src/components/Banners/Banners.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Banners/Banners.tsx -------------------------------------------------------------------------------- /src/components/Banners/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Banners/index.ts -------------------------------------------------------------------------------- /src/components/Banners/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Banners/type.ts -------------------------------------------------------------------------------- /src/components/Canvas/BouncingBall/Ball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/BouncingBall/Ball.ts -------------------------------------------------------------------------------- /src/components/Canvas/BouncingBall/Block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/BouncingBall/Block.ts -------------------------------------------------------------------------------- /src/components/Canvas/BouncingBall/BouncingBall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/BouncingBall/BouncingBall.tsx -------------------------------------------------------------------------------- /src/components/Canvas/BouncingBall/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BouncingBall'; 2 | -------------------------------------------------------------------------------- /src/components/Canvas/MovingBox/Dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/MovingBox/Dialog.ts -------------------------------------------------------------------------------- /src/components/Canvas/MovingBox/MovingBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/MovingBox/MovingBox.tsx -------------------------------------------------------------------------------- /src/components/Canvas/MovingBox/Point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/MovingBox/Point.ts -------------------------------------------------------------------------------- /src/components/Canvas/MovingBox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MovingBox'; 2 | -------------------------------------------------------------------------------- /src/components/Canvas/MovingGradation/GlowParticle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/MovingGradation/GlowParticle.ts -------------------------------------------------------------------------------- /src/components/Canvas/MovingGradation/MovingGradation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/MovingGradation/MovingGradation.tsx -------------------------------------------------------------------------------- /src/components/Canvas/MovingGradation/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/MovingGradation/constants.ts -------------------------------------------------------------------------------- /src/components/Canvas/MovingGradation/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MovingGradation'; 2 | -------------------------------------------------------------------------------- /src/components/Canvas/RotatingPolygon/Polygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/RotatingPolygon/Polygon.ts -------------------------------------------------------------------------------- /src/components/Canvas/RotatingPolygon/RotatingPolygon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/RotatingPolygon/RotatingPolygon.tsx -------------------------------------------------------------------------------- /src/components/Canvas/RotatingPolygon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RotatingPolygon'; 2 | -------------------------------------------------------------------------------- /src/components/Canvas/Wavy/Point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/Wavy/Point.ts -------------------------------------------------------------------------------- /src/components/Canvas/Wavy/Wave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/Wavy/Wave.ts -------------------------------------------------------------------------------- /src/components/Canvas/Wavy/WaveGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/Wavy/WaveGroup.ts -------------------------------------------------------------------------------- /src/components/Canvas/Wavy/Wavy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/Wavy/Wavy.tsx -------------------------------------------------------------------------------- /src/components/Canvas/Wavy/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Wavy'; 2 | -------------------------------------------------------------------------------- /src/components/Canvas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Canvas/index.ts -------------------------------------------------------------------------------- /src/components/ClimbEffects/ClimbEffects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/ClimbEffects/ClimbEffects.tsx -------------------------------------------------------------------------------- /src/components/ClimbEffects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/ClimbEffects/README.md -------------------------------------------------------------------------------- /src/components/ClimbEffects/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ClimbEffects'; 2 | -------------------------------------------------------------------------------- /src/components/ClipPathCircle/ClipPathCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/ClipPathCircle/ClipPathCircle.tsx -------------------------------------------------------------------------------- /src/components/ClipPathCircle/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ClipPathCircle'; 2 | -------------------------------------------------------------------------------- /src/components/CustomScrollbar/CustomScrollbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/CustomScrollbar/CustomScrollbar.tsx -------------------------------------------------------------------------------- /src/components/CustomScrollbar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CustomScrollbar'; 2 | -------------------------------------------------------------------------------- /src/components/Drag/DragItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Drag/DragItem.tsx -------------------------------------------------------------------------------- /src/components/Drag/DragItemList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Drag/DragItemList.tsx -------------------------------------------------------------------------------- /src/components/Drag/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DragItemList'; 2 | -------------------------------------------------------------------------------- /src/components/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/Dropdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Dropdown'; 2 | -------------------------------------------------------------------------------- /src/components/FakeScrollSpy/FakeScrollSpy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/FakeScrollSpy/FakeScrollSpy.tsx -------------------------------------------------------------------------------- /src/components/FakeScrollSpy/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FakeScrollSpy'; 2 | -------------------------------------------------------------------------------- /src/components/GhostText/GhostText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/GhostText/GhostText.tsx -------------------------------------------------------------------------------- /src/components/GhostText/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GhostText'; 2 | -------------------------------------------------------------------------------- /src/components/GlowingBackground/GlowingBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/GlowingBackground/GlowingBackground.tsx -------------------------------------------------------------------------------- /src/components/GlowingBackground/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GlowingBackground'; 2 | -------------------------------------------------------------------------------- /src/components/GlowingCheckbox/GlowingCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/GlowingCheckbox/GlowingCheckbox.tsx -------------------------------------------------------------------------------- /src/components/GlowingCheckbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GlowingCheckbox'; 2 | -------------------------------------------------------------------------------- /src/components/GlowingRadio/GlowingRadio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/GlowingRadio/GlowingRadio.tsx -------------------------------------------------------------------------------- /src/components/GlowingRadio/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GlowingRadio'; 2 | -------------------------------------------------------------------------------- /src/components/GlowingText/GlowingText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/GlowingText/GlowingText.tsx -------------------------------------------------------------------------------- /src/components/GlowingText/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/GlowingText/README.md -------------------------------------------------------------------------------- /src/components/GlowingText/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GlowingText'; 2 | -------------------------------------------------------------------------------- /src/components/HalfCircularBackground/HalfCircularBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/HalfCircularBackground/HalfCircularBackground.tsx -------------------------------------------------------------------------------- /src/components/HalfCircularBackground/index.ts: -------------------------------------------------------------------------------- 1 | export * from './HalfCircularBackground'; 2 | -------------------------------------------------------------------------------- /src/components/HeartAnimation/HeartAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/HeartAnimation/HeartAnimation.tsx -------------------------------------------------------------------------------- /src/components/HeartAnimation/index.ts: -------------------------------------------------------------------------------- 1 | export * from './HeartAnimation'; 2 | -------------------------------------------------------------------------------- /src/components/HideScrollOnScrollDown/HideScrollOnScrollDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/HideScrollOnScrollDown/HideScrollOnScrollDown.tsx -------------------------------------------------------------------------------- /src/components/HideScrollOnScrollDown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/HideScrollOnScrollDown/index.ts -------------------------------------------------------------------------------- /src/components/HoverEffectCard/HoverEffectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/HoverEffectCard/HoverEffectCard.tsx -------------------------------------------------------------------------------- /src/components/HoverEffectCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './HoverEffectCard'; 2 | -------------------------------------------------------------------------------- /src/components/ListHoverEffects/ListHoverEffects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/ListHoverEffects/ListHoverEffects.tsx -------------------------------------------------------------------------------- /src/components/ListHoverEffects/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ListHoverEffects'; 2 | -------------------------------------------------------------------------------- /src/components/Loader/GradientLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Loader/GradientLoader.tsx -------------------------------------------------------------------------------- /src/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /src/components/Loader/TwoRingLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Loader/TwoRingLoader.tsx -------------------------------------------------------------------------------- /src/components/Loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Loader/index.ts -------------------------------------------------------------------------------- /src/components/LongTextShadow/LongTextShadow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/LongTextShadow/LongTextShadow.tsx -------------------------------------------------------------------------------- /src/components/LongTextShadow/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LongTextShadow'; 2 | -------------------------------------------------------------------------------- /src/components/Menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Menu/Menu.tsx -------------------------------------------------------------------------------- /src/components/Menu/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Menu/MenuItem.tsx -------------------------------------------------------------------------------- /src/components/Menu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Menu'; 2 | -------------------------------------------------------------------------------- /src/components/MiniWavy/MiniWavy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/MiniWavy/MiniWavy.tsx -------------------------------------------------------------------------------- /src/components/MiniWavy/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MiniWavy'; 2 | -------------------------------------------------------------------------------- /src/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/Modal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Modal'; 2 | -------------------------------------------------------------------------------- /src/components/MouseCursor/DotMouseCursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/MouseCursor/DotMouseCursor.tsx -------------------------------------------------------------------------------- /src/components/MouseCursor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DotMouseCursor'; 2 | -------------------------------------------------------------------------------- /src/components/MoveSheep/Hill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/MoveSheep/Hill.ts -------------------------------------------------------------------------------- /src/components/MoveSheep/MoveSheep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/MoveSheep/MoveSheep.tsx -------------------------------------------------------------------------------- /src/components/MoveSheep/Sheep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/MoveSheep/Sheep.ts -------------------------------------------------------------------------------- /src/components/MoveSheep/SheepController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/MoveSheep/SheepController.ts -------------------------------------------------------------------------------- /src/components/MoveSheep/Sun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/MoveSheep/Sun.ts -------------------------------------------------------------------------------- /src/components/MoveSheep/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MoveSheep'; 2 | -------------------------------------------------------------------------------- /src/components/MovingText/MovingText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/MovingText/MovingText.tsx -------------------------------------------------------------------------------- /src/components/MovingText/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MovingText'; 2 | -------------------------------------------------------------------------------- /src/components/NeonButton/NeonButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/NeonButton/NeonButton.tsx -------------------------------------------------------------------------------- /src/components/NeonButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NeonButton'; 2 | -------------------------------------------------------------------------------- /src/components/NumberCounter/NumberCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/NumberCounter/NumberCounter.tsx -------------------------------------------------------------------------------- /src/components/NumberCounter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NumberCounter'; 2 | -------------------------------------------------------------------------------- /src/components/PasswordInput/PasswordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/PasswordInput/PasswordInput.tsx -------------------------------------------------------------------------------- /src/components/PasswordInput/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PasswordInput'; 2 | -------------------------------------------------------------------------------- /src/components/Portal/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Portal/Portal.tsx -------------------------------------------------------------------------------- /src/components/Portal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Portal'; 2 | -------------------------------------------------------------------------------- /src/components/RangeInput/RangeInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/RangeInput/RangeInput.tsx -------------------------------------------------------------------------------- /src/components/RangeInput/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RangeInput'; 2 | -------------------------------------------------------------------------------- /src/components/RippleEffectsButton/RippleEffectsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/RippleEffectsButton/RippleEffectsButton.tsx -------------------------------------------------------------------------------- /src/components/RippleEffectsButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RippleEffectsButton'; 2 | -------------------------------------------------------------------------------- /src/components/ScrollDownIndicator/ScrollDownIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/ScrollDownIndicator/ScrollDownIndicator.tsx -------------------------------------------------------------------------------- /src/components/ScrollDownIndicator/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ScrollDownIndicator'; 2 | -------------------------------------------------------------------------------- /src/components/ScrollProgressBar/ScrollProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/ScrollProgressBar/ScrollProgressBar.tsx -------------------------------------------------------------------------------- /src/components/ScrollProgressBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ScrollProgressBar'; 2 | -------------------------------------------------------------------------------- /src/components/ShadowEffects/ShadowEffects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/ShadowEffects/ShadowEffects.tsx -------------------------------------------------------------------------------- /src/components/ShadowEffects/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ShadowEffects'; 2 | -------------------------------------------------------------------------------- /src/components/SidebarMenu/SidebarMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/SidebarMenu/SidebarMenu.tsx -------------------------------------------------------------------------------- /src/components/SidebarMenu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SidebarMenu'; 2 | -------------------------------------------------------------------------------- /src/components/Skeleton/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Skeleton/Skeleton.tsx -------------------------------------------------------------------------------- /src/components/Skeleton/Skeleton2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Skeleton/Skeleton2.tsx -------------------------------------------------------------------------------- /src/components/Skeleton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Skeleton/index.ts -------------------------------------------------------------------------------- /src/components/SlidingMenuIndicator/SlidingMenuIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/SlidingMenuIndicator/SlidingMenuIndicator.tsx -------------------------------------------------------------------------------- /src/components/SlidingMenuIndicator/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SlidingMenuIndicator'; 2 | -------------------------------------------------------------------------------- /src/components/StickyElementsScrollingEffects/StickyElementsScrollingEffects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/StickyElementsScrollingEffects/StickyElementsScrollingEffects.tsx -------------------------------------------------------------------------------- /src/components/StickyElementsScrollingEffects/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StickyElementsScrollingEffects'; 2 | -------------------------------------------------------------------------------- /src/components/TextArea/TextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/TextArea/TextArea.tsx -------------------------------------------------------------------------------- /src/components/TextArea/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TextArea'; 2 | -------------------------------------------------------------------------------- /src/components/TextTyping/TextTyping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/TextTyping/TextTyping.tsx -------------------------------------------------------------------------------- /src/components/TextTyping/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TextTyping'; 2 | -------------------------------------------------------------------------------- /src/components/ThreeDimensionBackground/ThreeDimensionBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/ThreeDimensionBackground/ThreeDimensionBackground.tsx -------------------------------------------------------------------------------- /src/components/ThreeDimensionBackground/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ThreeDimensionBackground'; 2 | -------------------------------------------------------------------------------- /src/components/ThreeDimensionDebitCard/ThreeDimensionDebitCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/ThreeDimensionDebitCard/ThreeDimensionDebitCard.tsx -------------------------------------------------------------------------------- /src/components/ThreeDimensionDebitCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ThreeDimensionDebitCard'; 2 | -------------------------------------------------------------------------------- /src/components/Timeline/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Timeline/Timeline.tsx -------------------------------------------------------------------------------- /src/components/Timeline/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Timeline'; 2 | -------------------------------------------------------------------------------- /src/components/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/Tooltip/TooltipWithPortal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Tooltip/TooltipWithPortal.tsx -------------------------------------------------------------------------------- /src/components/Tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/Tooltip/index.ts -------------------------------------------------------------------------------- /src/components/WaveBorderCard/WaveBorderCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/WaveBorderCard/WaveBorderCard.tsx -------------------------------------------------------------------------------- /src/components/WaveBorderCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './WaveBorderCard'; 2 | -------------------------------------------------------------------------------- /src/components/WavySection/WavySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/WavySection/WavySection.tsx -------------------------------------------------------------------------------- /src/components/WavySection/index.ts: -------------------------------------------------------------------------------- 1 | export * from './WavySection'; 2 | -------------------------------------------------------------------------------- /src/components/WebGlAndThreeJS/BasicScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/WebGlAndThreeJS/BasicScene.tsx -------------------------------------------------------------------------------- /src/components/WebGlAndThreeJS/BasicScene2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/WebGlAndThreeJS/BasicScene2.tsx -------------------------------------------------------------------------------- /src/components/WebGlAndThreeJS/BasicScene3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/WebGlAndThreeJS/BasicScene3.tsx -------------------------------------------------------------------------------- /src/components/WebGlAndThreeJS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/WebGlAndThreeJS/index.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/hooks/useScreenSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/hooks/useScreenSize.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/stories/Accordion.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/Accordion.stories.tsx -------------------------------------------------------------------------------- /src/stories/AnimatedEyesFollowMouseCursor.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/AnimatedEyesFollowMouseCursor.stories.tsx -------------------------------------------------------------------------------- /src/stories/Banners.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/Banners.stories.tsx -------------------------------------------------------------------------------- /src/stories/ClimbEffects.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/ClimbEffects.stories.tsx -------------------------------------------------------------------------------- /src/stories/ClipPathCircle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/ClipPathCircle.stories.tsx -------------------------------------------------------------------------------- /src/stories/CustomScrollbar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/CustomScrollbar.stories.tsx -------------------------------------------------------------------------------- /src/stories/Drag.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/Drag.stories.tsx -------------------------------------------------------------------------------- /src/stories/DropDown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/DropDown.stories.tsx -------------------------------------------------------------------------------- /src/stories/FakeScrollSpy.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/FakeScrollSpy.stories.tsx -------------------------------------------------------------------------------- /src/stories/GhostText.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/GhostText.stories.tsx -------------------------------------------------------------------------------- /src/stories/GlowingBackground.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/GlowingBackground.stories.tsx -------------------------------------------------------------------------------- /src/stories/GlowingCheckbox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/GlowingCheckbox.stories.tsx -------------------------------------------------------------------------------- /src/stories/GlowingText.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/GlowingText.stories.tsx -------------------------------------------------------------------------------- /src/stories/HalfCircularBackground.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/HalfCircularBackground.stories.tsx -------------------------------------------------------------------------------- /src/stories/HeartAnimation.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/HeartAnimation.stories.tsx -------------------------------------------------------------------------------- /src/stories/HideScrollOnScrollDown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/HideScrollOnScrollDown.stories.tsx -------------------------------------------------------------------------------- /src/stories/HoverEffectCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/HoverEffectCard.stories.tsx -------------------------------------------------------------------------------- /src/stories/Introduction.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/Introduction.stories.mdx -------------------------------------------------------------------------------- /src/stories/ListHoverEffects.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/ListHoverEffects.stories.tsx -------------------------------------------------------------------------------- /src/stories/Loader.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/Loader.stories.tsx -------------------------------------------------------------------------------- /src/stories/LongBoxShadow.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/LongBoxShadow.stories.tsx -------------------------------------------------------------------------------- /src/stories/Menu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/Menu.stories.tsx -------------------------------------------------------------------------------- /src/stories/MiniWavy.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/MiniWavy.stories.tsx -------------------------------------------------------------------------------- /src/stories/Modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/Modal.stories.tsx -------------------------------------------------------------------------------- /src/stories/MouseCursor.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/MouseCursor.stories.tsx -------------------------------------------------------------------------------- /src/stories/MovingText.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/MovingText.stories.tsx -------------------------------------------------------------------------------- /src/stories/NeonButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/NeonButton.stories.tsx -------------------------------------------------------------------------------- /src/stories/NumberCounter.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/NumberCounter.stories.tsx -------------------------------------------------------------------------------- /src/stories/PasswordInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/PasswordInput.stories.tsx -------------------------------------------------------------------------------- /src/stories/RangeInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/RangeInput.stories.tsx -------------------------------------------------------------------------------- /src/stories/RippleEffectsButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/RippleEffectsButton.stories.tsx -------------------------------------------------------------------------------- /src/stories/ScrollDownIndicator.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/ScrollDownIndicator.stories.tsx -------------------------------------------------------------------------------- /src/stories/ScrollProgressBar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/ScrollProgressBar.stories.tsx -------------------------------------------------------------------------------- /src/stories/ShadowEffects.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/ShadowEffects.stories.tsx -------------------------------------------------------------------------------- /src/stories/SidebarMenu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/SidebarMenu.stories.tsx -------------------------------------------------------------------------------- /src/stories/Skeleton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/Skeleton.stories.tsx -------------------------------------------------------------------------------- /src/stories/SlidingMenuIndicator.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/SlidingMenuIndicator.stories.tsx -------------------------------------------------------------------------------- /src/stories/StickyElementsScrollingEffects.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/StickyElementsScrollingEffects.stories.tsx -------------------------------------------------------------------------------- /src/stories/TextArea.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/TextArea.stories.tsx -------------------------------------------------------------------------------- /src/stories/TextTyping.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/TextTyping.stories.tsx -------------------------------------------------------------------------------- /src/stories/ThreeDimensionBackground.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/ThreeDimensionBackground.stories.tsx -------------------------------------------------------------------------------- /src/stories/ThreeDimensionDebitCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/ThreeDimensionDebitCard.stories.tsx -------------------------------------------------------------------------------- /src/stories/Timeline.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/Timeline.stories.tsx -------------------------------------------------------------------------------- /src/stories/Tooltip.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/Tooltip.stories.tsx -------------------------------------------------------------------------------- /src/stories/WaveBorderCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/WaveBorderCard.stories.tsx -------------------------------------------------------------------------------- /src/stories/WavySection.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/WavySection.stories.tsx -------------------------------------------------------------------------------- /src/stories/assets/code-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/assets/code-brackets.svg -------------------------------------------------------------------------------- /src/stories/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/assets/colors.svg -------------------------------------------------------------------------------- /src/stories/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/assets/comments.svg -------------------------------------------------------------------------------- /src/stories/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/assets/direction.svg -------------------------------------------------------------------------------- /src/stories/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/assets/flow.svg -------------------------------------------------------------------------------- /src/stories/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/assets/plugin.svg -------------------------------------------------------------------------------- /src/stories/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/assets/repo.svg -------------------------------------------------------------------------------- /src/stories/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/assets/stackalt.svg -------------------------------------------------------------------------------- /src/stories/canvasTutorial/BouncingBall.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/canvasTutorial/BouncingBall.stories.tsx -------------------------------------------------------------------------------- /src/stories/canvasTutorial/MoveSheep.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/canvasTutorial/MoveSheep.stories.tsx -------------------------------------------------------------------------------- /src/stories/canvasTutorial/MovingBox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/canvasTutorial/MovingBox.stories.tsx -------------------------------------------------------------------------------- /src/stories/canvasTutorial/MovingGradation.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/canvasTutorial/MovingGradation.stories.tsx -------------------------------------------------------------------------------- /src/stories/canvasTutorial/Readme.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/canvasTutorial/Readme.stories.mdx -------------------------------------------------------------------------------- /src/stories/canvasTutorial/RotatingPolygon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/canvasTutorial/RotatingPolygon.stories.tsx -------------------------------------------------------------------------------- /src/stories/canvasTutorial/Wavy.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/canvasTutorial/Wavy.stories.tsx -------------------------------------------------------------------------------- /src/stories/dummy/dummyData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/dummy/dummyData.js -------------------------------------------------------------------------------- /src/stories/threejs/BasicScene.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/stories/threejs/BasicScene.stories.tsx -------------------------------------------------------------------------------- /src/utils/DomUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/utils/DomUtils.ts -------------------------------------------------------------------------------- /src/utils/RefUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/utils/RefUtils.ts -------------------------------------------------------------------------------- /src/utils/WebGLUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/utils/WebGLUtils.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JungKyuHyun/css-collection/HEAD/yarn.lock --------------------------------------------------------------------------------