Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@closet-viewer/closet-viewer

Package Overview
Dependencies
Maintainers
4
Versions
261
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@closet-viewer/closet-viewer

Render CLO models on web environment.

  • 1.14.4
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
4
Weekly downloads
 
Created
Source

CLOSET 3D Viewer

CLOSET 3D Viewer is a JavaScript library to see the object in 3D on any web pages or applications supporting for HTTPS and JavaScript. By following the guide below, you can make your own 3D web viewer. As CLOSET has been also implemented with this library, you can refer to CLOSET(https://www.clo-set.com/Marketplace/Detail?itemid=a39e955d947647539314f85443c90e9b) as an example.

Download

Only you need is "closet.viewer.js" file under "dist" folder. If you want to customize the library, see How to build

Usage

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CLO Viewer Test</title>
</head>
<body>
<script type='text/javascript' src='js/closet.viewer.js'></script>
<script>
    closet.viewer.init({
        element: 'detail_viewer',
        width: 620,
        height: 780
    })

    closet.viewer.loadZrestUrl('https://s3.clo3d.com/zpac/denim.zrest');
</script>
</body>
</html>

Here you need to get the URL of ZRest file. ZRest is a file format containing 3D geometry and material information only. When you upload a 3D file(ZPrj, Zpac, AVT and etc) onto CLOSET, a ZRest file is automatically generated in CLOSET server. You can get the URL of the ZRest file by using CLOSET API - api/Item/ZrestUrl/{itemId}.

Methods

closet.viewer.init([options:Object])

Initialize viewer with options.

Options
OptionTypeDescription
elementStringSpecifies a id for the container element.
widthNumberWidth of viewer.
heightNumberHeight of viewer.
closet.viewer.loadZrestUrl([zrestUrl:String])

Load the file from the server and places the 3D object on the viewer.

Browser Support

Works in IE11+, and all modern browsers.

How to build

If you want to modify the source code and make your own library, please follow the guide below.

  1. First, you need to install Node.js.

  2. Clone a copy of the git repo by running:

git clone https://github.com/clovirtualfashion/closet.viewer.js.git
  1. Enter the viewer directory:
cd closet.viewer.js
  1. Install all dependencies and run the build script:
npm install && npm run build
  1. Running develop with webpack-dev-server:
npm run develop
  1. If you want to run on Windows, add this line to your '[Windows folder]/System32/drivers/etc/hosts' file
127.0.0.1       dev.clo-set.com
  1. Then, you can get closet.viewer.js in "dist" folder.

FAQs

Package last updated on 21 Feb 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc