Comment by LarsDu88
2 years ago
This is seriously the most impressive visualization I've ever seen. What tool did the author use to do this?
2 years ago
This is seriously the most impressive visualization I've ever seen. What tool did the author use to do this?
Nothing beats https://ciechanow.ski/sound/
Looks like svelte + three.js
Svelte has some pretty nice built-in scroll animation support: https://svelte.dev/repl/051cd352ce284d15b55c91c8b30fa32f?ver...
Author here. I'm using Svelte, which is great for interactive applications. For the event handling I'm very influenced by what https://mlu-explain.github.io/ does. The 3d plot is made with Threejs through the Threlte wrapper. One challenge was animating the 20k points in the 3d plot, which is handled by a custom vertex shader.
Thanks for sharing the tech stack. It's a really impressive site.
more specifically it's using the svelte wrapper of three.js called Threlte: https://threlte.xyz/
Looks like Svelte (https://svelte.dev/)