React Image Turntable
built with TypeScript
This package aims to display an object in 360 degree perspective with the use of multiple, angled images from around the object itself which you need to provide.
A decent looking turntable will require 20-35 angled images from around the object, ordered correctly.
Installation
npm i react-image-turntable
or
yarn add react-image-turntable
Usage
import React from 'react'
import { Turntable } from 'react-image-turntable'
const myImages = [<YOUR_IMAGE_PATHS>]
const MyTurntable = () => (
<Turntable images={myImages} />
)