AR 3D Product Card
A lightweight React component for displaying products in both Augmented Reality (AR) and 3D. Perfect for eCommerce applications where you want to showcase your products in an immersive and interactive way.
Installation
You can install the package via npm or yarn:
npm install 3d-ar-product-card
Usage
import { AR3DProductCard } from '3d-ar-product-card';
Basic Example
import React from 'react';
import { AR3DProductCard } from '3d-ar-product-card';
function App() {
return (
<div>
<AR3DProductCard
gltfPath="/models/indoor_plant/scene.gltf"
imageSrc="/image/1.png"
/>
</div>
);
}
export default App;
Props
Setup Require
Make this src/components folder
name as Arcomponent.jsx
import { XrHitModelContainer } from '3d-ar-product-card';
import { useLocation } from 'react-router-dom';
import { XrHitModelContainer } from '3d-ar-product-card';
const Arcomponent = () => {
const location = useLocation();
const params = new URLSearchParams(location.search);
const gltfPath = params.get('gltfPath') || './models/default.gltf';
console.log(gltfPath);
console.log("gltfPath:", gltfPath); // Log the gltfPath for debugging
return (
<>
{gltfPath ? (
<XrHitModelContainer gltfPath={gltfPath} />
) : (
<p>Error: No valid GLTF path provided.</p>
)}
</>
);
};
export default Arcomponent;
Make route 'xr' of this component
Example
import Arcomponent from "./components/Arcomponent";
const App = () => {
return(
<Routes>
<Route path="/xr" element={<Arcomponent />} />
</Routes>
)};
export default App;
Features
- AR and 3D views: Allows users to view products in Augmented Reality or 3D directly in their browser.
- Customizable product card: Easily add products to the card with customizable properties like model path, scale, position, and image.
- Mobile and Desktop Support: Automatically adjusts based on the device (mobile devices for AR and desktops for 3D).
- Easy Integration: Simple to use in any React application.
License
MIT License.