Skip to content
Advertisement

Javascript / Three.js is not working in https

I recently switched my http site to https.

Since I made this change, one of my projects no longer works.

In this random generator, the background using the Three.js library does not appear when the url is in https

But in http , it works beautiful and well.

Does anyone know any solution to this problem?

Thank you for your consideration in this matter.

Advertisement

Answer

You can download the three.min.js file and save it on to your https server.

And instead of loading the script from http server, provide the path of your https server where you put the three.min.js file.

<script src="https://[path to your server]/js/three.min.js"></script>
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement