ottobonn / stl-viewer

An HTML custom element to render 3D STL models in a web page
MIT License
12 stars 3 forks source link

stl-viewer

An HTML custom element to render 3D STL models in a web page, used on my blog.

Include stl-viewer in your web page and then add the custom viewer element:

<html>
  <body>
    <script type="module" src="https://github.com/ottobonn/stl-viewer/raw/main/stl-viewer.js"></script>
    <stl-viewer model="test.stl"></stl-viewer>
  </body>
</html>

Pass the path or URI of the STL file in the model attribute.