3DViewerComponent
v1.0.0
Published
ThreeD Viewer Component =====================
Downloads
26
Readme
ThreeD Viewer Component
This is a 3D viewer web component that presents a model, currently based on 2 parameters:
- Previews - An array of objects, each consisting of two properties:
- file_type: "obj"/"stl"
- file_url: can be an absolute URL (for an S3 bucket for instance), or a relative path
- Color (optional) - If not provided, a value of #F18D05 will be used
Installation
bower install --save [email protected]:Autodesk/3DViewerComponent.git
Then add these 2 lines at your HTML file:
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="bower_components/3DViewerComponent/dist/three-d-viewer.html">
From here you just use the tag itself with the parameters, e.g.:
<three-d-viewer color="ff0000"
previews='[{"file_type": "stl", "file_url": "bower_components/3DViewerComponent/samples/Camel.stl"}]'>
</three-d-viewer>
If you're running as a new project or a blank new HTML page and don't have your styling, add this CSS for styling just to see how it looks:
<style>
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
</style>