
Security News
Python Adopts Standard Lock File Format for Reproducible Installs
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.
3d-ar-product-card
Advanced tools
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.
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.
You can install the package via npm or yarn:
npm install 3d-ar-product-card
import { AR3DProductCard } from '3d-ar-product-card';
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;
gltfPath (string): The path to the 3D model file (GLTF format).
imageSrc (string): The image to display on the product card.
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;
MIT License.
FAQs
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.
The npm package 3d-ar-product-card receives a total of 45 weekly downloads. As such, 3d-ar-product-card popularity was classified as not popular.
We found that 3d-ar-product-card demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.
Security News
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.