I am trying to use model-viewer to display glb models on a web page on my laptop (I do not currently have access to a web server). The model is showing up fine, but I cannot rotate, pan or zoom the model. I do not have Threejs installed on my laptop but am using a this CDN link ββ
Here is a link to the model viewer to show what I am trying to achieve.
Here is a screen shot of what my web page looks like.
Model viewer uses three internally but itβs like an engine with little to no relation to how you normally use threejs. You should go to the source to figure out issues.
@ntxdave here is a simple model viewer example code that might help you. The html file is attached after the code and since it is standalone you should be able to open it in your internet browser.
This example has auto-rotation set so you might consider removing those particular settings (auto-rotate and auto-rotate-delay and rotation-per-second). Just pay attention to the src setting which is currently using an example GLB file from my repository - you might be able to replace it with some of your models. The model viewer component has a bunch of other settings that could be added in the same manner as currently present settings.
If you do bother checking my repositories then you could notice that this code was extracted from the index.html file of my Main Webpage.
There is another similar but a little bit more complex usage example in the code of my GM Viewer.
I downloaded your file and installed it on my laptop and ran it and it worked fine. There is tons of javascript code here that I do not really know but I wanted to try showing one of my models. I changed the src element and entered my model name. Since it is in the same folder as where I placed your html file, I just entered the name of my model. I did not show up. What should have I entered.
The simplest server would probably be python, assuming you have python3 installed on your computer, in which case you would use Terminal or Command Prompt and then:
Rename your html file to index.html first
Use command prompt to navigate to your folder where this html and model are
Enter the following command: python3 -m http.server
Open your internet browser and enter: http://localhost:8000
It should show you this html page and hopefully with the model loaded.
Other server options could possibly be Node.js and VS Code and whatever else you can find on the internet.
Optionally, if you have github account then just place your model there and use the URL similar to what I have posted in my code (but with your user name and repository that you would be using).
Thought I would share the page I am using to show the model. Feel free to look at the code in the attached text file and let me know what I am doing wrong.
With your model it works fine. With my model, I have the same problem as before. The model shows but I cannot rotate, pan, or zoom.
So there must be some problem with my model. Did it work for you? When I look at the modified page your sent me, I do not see what the difference is. What the heck am I missing?
I had to use https:// to specify the location of the glb file. I was not good at specifying sub folders though.
BTW: I REALLY appreciate what you are doing for me to help me resolve the issue and better understand what I am doing wrong.