Snowstake - 3D Gallery Art

Some coders really get some interesting ideas.
And this here is quite good ( from 2010! ): → Move with your keyboard Cursors!

http://www.satine.org/research/webkit/snowleopard/snowstack.html

I tried also to get this to wix by using the html Code. But I couldnt figure out
how to add your own gallery. I figured out that he uses this code to get his images:

var images = jQuery.map(data.photos.photo, function (item)
{
    return {
        thumb: item.url_s,
        zoom: 'http://farm' + item.farm + '.static.flickr.com/' + item.server + '/' + item.id + '_' + item.secret + '.jpg',
        link: 'http://www.flickr.com/photos/' + item.owner + '/' + item.id
    };
});

You could have just looked at the page source to find that out.


Plus, it makes us of AJAX and you are much better using Fetch nowadays.

Here is a brief info about it.
https://www.sitepoint.com/xmlhttprequest-vs-the-fetch-api-whats-best-for-ajax-in-2019/

Plus that doesn’t work in either Firefox, Chrome or Edge, so not viable for users on different devices over mac and pc and their different browser choices.