Код: Выделить всё
function convert(bubbliURL) {
const bubbliId = new URL(bubbliURL).pathname.replaceAll("/", ""),
directions = ["nx", "ny", "nz", "px", "py", "pz"];
for (const direction of directions) {
const image = new Image;
image.onload = () => document.body.append(image);
image.src = `https://d39cwcjmzdw2iw.cloudfront.net/${bubbliId}/stitched_${direction}.jpg`;
}
}
convert("http://on.bubb.li/561309a7zrtjetjc40ojhie");< /code>
img { width: 40%; margin-right: 8px }Подробнее здесь: https://stackoverflow.com/questions/797 ... javascript