Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3d animated card added #662

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 32 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@
"preview": "vite preview"
},
"dependencies": {
"framer-motion": "^10.12.16",
"clsx": "^2.1.1",
"framer-motion": "^10.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-icons": "^4.12.0",
"react-router-dom": "^6.13.0",
"styled-components": "^6.0.1"
"styled-components": "^6.0.1",
"tailwind-merge": "^2.5.2"
},
"devDependencies": {
"@types/react": "^18.2.14",
Expand Down
130 changes: 130 additions & 0 deletions src/components/Card3d.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
import React, {
createContext,
useState,
useContext,
useRef,
useEffect,
} from "react";
import { cn } from "../lib/utils"; // Make sure this path is correct for your project

const MouseEnterContext = createContext(undefined);

export const CardContainer = ({
children,
className,
containerClassName,
}) => {
const containerRef = useRef(null);
const [isMouseEntered, setIsMouseEntered] = useState(false);

const handleMouseMove = (e) => {
if (!containerRef.current) return;
const { left, top, width, height } =
containerRef.current.getBoundingClientRect();
const x = (e.clientX - left - width / 2) / 25;
const y = (e.clientY - top - height / 2) / 25;
containerRef.current.style.transform = `rotateY(${x}deg) rotateX(${y}deg)`;
};

const handleMouseEnter = () => {
setIsMouseEntered(true);
};

const handleMouseLeave = () => {
if (!containerRef.current) return;
setIsMouseEntered(false);
containerRef.current.style.transform = `rotateY(0deg) rotateX(0deg)`;
};

return (
<MouseEnterContext.Provider value={[isMouseEntered, setIsMouseEntered]}>
<div
className={cn(
"py-20 flex items-center justify-center",
containerClassName
)}
style={{
perspective: "1000px",
}}
>
<div
ref={containerRef}
onMouseEnter={handleMouseEnter}
onMouseMove={handleMouseMove}
onMouseLeave={handleMouseLeave}
className={cn(
"flex items-center justify-center relative transition-all duration-200 ease-linear",
className
)}
style={{
transformStyle: "preserve-3d",
}}
>
{children}
</div>
</div>
</MouseEnterContext.Provider>
);
};

export const CardBody = ({ children, className }) => {
return (
<div
className={cn(
" h-92 w-96 p-2 [transform-style:preserve-3d] [&>*]:[transform-style:preserve-3d]",
className
)}
>
{children}
</div>
);
};


export const CardItem = ({
as: Tag = "div",
children,
className,
translateX = 0,
translateY = 0,
translateZ = 0,
rotateX = 0,
rotateY = 0,
rotateZ = 0,
...rest
}) => {
const ref = useRef(null);
const [isMouseEntered] = useMouseEnter();

useEffect(() => {
handleAnimations();
}, [isMouseEntered]);

const handleAnimations = () => {
if (!ref.current) return;
if (isMouseEntered) {
ref.current.style.transform = `translateX(${translateX}px) translateY(${translateY}px) translateZ(${translateZ}px) rotateX(${rotateX}deg) rotateY(${rotateY}deg) rotateZ(${rotateZ}deg)`;
} else {
ref.current.style.transform = `translateX(0px) translateY(0px) translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg)`;
}
};

return (
<Tag
ref={ref}
className={cn(`w-fit overflow-hidden transition duration-200 ease-linear`, className)}
{...rest}
>
{children}
</Tag>
);
};

// Create a hook to use the context
export const useMouseEnter = () => {
const context = useContext(MouseEnterContext);
if (context === undefined) {
throw new Error("useMouseEnter must be used within a MouseEnterProvider");
}
return context;
};
39 changes: 31 additions & 8 deletions src/components/books/Index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import tailwind from '../../database/books/tailwindcss.json';
import nextjs from '../../database/books/nextjs.json';
import { useLocation } from "react-router-dom";

import { CardContainer, CardBody, CardItem } from "../Card3d";
import { FaChevronRight } from "react-icons/fa";

const Index = () => {
const [filter, setFilter] = useState('html');
Expand Down Expand Up @@ -55,14 +57,35 @@ const Index = () => {
<div className='flex flex-wrap gap-5'>
{data.length > 0 ? (
(location.search !== "" ? searchData : data).map((res, i) => (
<Card
key={res.title}
title={res.title}
link={res.link}
description={res.description}
i={i}
img={res.img}
/>
<>
<a className="group"
href={res.link}
>
<CardContainer
key={res.title}
containerClassName="custom-container-class"
className="custom-class group shadow-3xl rounded border p-2"
>
<CardBody className="custom-body-class">
<CardItem className="text-xl mb-3 font-bold line-clamp-1" translateZ="10">
{res.title}
</CardItem>
<CardItem className="rounded w-full aspect-video my-2" translateZ="25">
<img className="w-full aspect-video object-cover" src={res.img} alt={res.title} />
</CardItem>
<CardItem className="justify-center mx-2 line-clamp-3" translateZ="5">
{res.description}
</CardItem>
<CardItem className="inline-flex bg-grape-200 text-white transtition-color ease-out duration-500 group-hover:bg-grape-50/50 group-hover:text-grape-300 rounded px-2 items-center m-2 p-1" translateZ="10" >

Read More{" "}
<FaChevronRight className="transition-transform ease-out duration-500 group-hover:translate-x-1" />
</CardItem>
</CardBody>
</CardContainer>
</a>
</>

))
) : (
<p>No Data Found.</p>
Expand Down
41 changes: 32 additions & 9 deletions src/components/challenges/Index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ import tailwind from '../../database/challenges/tailwindcss.json';
import nextjs from '../../database/challenges/nextjs.json';
import { useLocation } from "react-router-dom";

import { CardContainer, CardBody, CardItem } from "../Card3d";
import { FaChevronRight } from "react-icons/fa";


const Index = () => {
const [filter, setFilter] = useState('html');
Expand Down Expand Up @@ -56,15 +59,35 @@ const Index = () => {
(location.search !== "" ? searchData : data).map(
(res, i) =>
filter === res.tag && (
<Card
className
key={res.title}
title={res.title}
link={res.link}
description={res.description}
i={i}
img={res.img}
/>
<>
<a className="group"
href={res.link}
>
<CardContainer
key={res.title}
containerClassName="custom-container-class"
className="custom-class group shadow-3xl rounded border p-2"
>
<CardBody className="custom-body-class">
<CardItem className="text-xl mb-3 font-bold line-clamp-1" translateZ="10">
{res.title}
</CardItem>
<CardItem className="rounded w-full aspect-video my-2" translateZ="25">
<img className="w-full aspect-video object-cover" src={res.img} alt={res.title} />
</CardItem>
<CardItem className="justify-center mx-2 line-clamp-3" translateZ="5">
{res.description}
</CardItem>
<CardItem className="inline-flex bg-grape-200 text-white transtition-color ease-out duration-500 group-hover:bg-grape-50/50 group-hover:text-grape-300 rounded px-2 items-center m-2 p-1" translateZ="10" >

Read More{" "}
<FaChevronRight className="transition-transform ease-out duration-500 group-hover:translate-x-1" />
</CardItem>
</CardBody>
</CardContainer>
</a>
</>

)
)
) : (
Expand Down
39 changes: 31 additions & 8 deletions src/components/editor/Index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import css from '../../database/editor/css.json';
import js from '../../database/editor/javascript.json';
import react from '../../database/editor/reactjs.json';

import { CardContainer, CardBody, CardItem } from "../Card3d";
import { FaChevronRight } from "react-icons/fa";
const Index = () => {
const [filter, setFilter] = useState('html');
const [data, setData] = useState([]);
Expand All @@ -32,14 +34,35 @@ const Index = () => {
<div className='flex flex-wrap gap-5'>
{data.length > 0 ? (
data.map((res, i) => (
<Card
key={res.title}
title={res.title}
link={res.link}
description={res.description}
i={i}
img={res.img}
/>
<>
<a className="group"
href={res.link}
>
<CardContainer
key={res.title}
containerClassName="custom-container-class"
className="custom-class group shadow-3xl rounded border p-2"
>
<CardBody className="custom-body-class">
<CardItem className="text-xl mb-3 font-bold line-clamp-1" translateZ="10">
{res.title}
</CardItem>
<CardItem className="rounded w-full aspect-video my-2" translateZ="25">
<img className="w-full aspect-video object-cover" src={res.img} alt={res.title} />
</CardItem>
<CardItem className="justify-center mx-2 line-clamp-3" translateZ="5">
{res.description}
</CardItem>
<CardItem className="inline-flex bg-grape-200 text-white transtition-color ease-out duration-500 group-hover:bg-grape-50/50 group-hover:text-grape-300 rounded px-2 items-center m-2 p-1" translateZ="10" >

Read More{" "}
<FaChevronRight className="transition-transform ease-out duration-500 group-hover:translate-x-1" />
</CardItem>
</CardBody>
</CardContainer>
</a>
</>

))
) : (
<p>No data found.</p>
Expand Down
Loading