惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
宝玉的分享
宝玉的分享
量子位
Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
J
Java Code Geeks
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
S
SegmentFault 最新的问题
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
小众软件
小众软件
The Cloudflare Blog
Y
Y Combinator Blog
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
IT之家
IT之家

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Build an Interactive 360 Product Viewer
Alex M · 2026-04-29 · via DEV Community

TL;DR
Learn how to build a 360-degree interactive product spinner using Cloud Images Toolkit (CIT) and Immersive Media Spots (IMS) Web Components. We will set up Cloudflare Images for CDN delivery, manage assets locally with CIT, and embed a framework-agnostic <ims-viewer> tag on the frontend.

Have you ever tried to showcase a complex physical product on a web page? Standard photos often fall flat, and 3D models can be expensive, uncanny, or lack the true texture of reality. This is especially true for items with fine details like jewelry, antiques, or specialized hardware. A 360-degree photo spinner provides a great middle ground, but building the pipeline to host, scale, and render dozens of high-res frames without blocking page rendering is usually a headache.

Here is how you can build a complete workflow for interactive 360-degree product views using two completely free and open-source tools:

This setup is ideal for web studios, photo studios, and professional photographers who want to provide high-end interactive content as a value-add service for their clients without the overhead of custom 3D development.

What You Need

  • A sequence of 360° product photos
  • An Image CDN account. We will use Cloudflare Images for this guide, but Cloudinary, ImageKit, or Bunny.net also work perfectly. If you want a free option to start, both Cloudinary and ImageKit offer generous forever-free tiers (up to 20-25GB of monthly bandwidth)!
  • Node.js 20.0+ installed

Step 1: Prepare Your Image Sequence

Whether you use professional studio equipment or a smartphone with a DIY turntable, capture the object from all angles.

Important: Your files must be named sequentially (for example, IMG_0001.jpg, IMG_0002.jpg) so the toolkit sorts them automatically. Conveniently, this sequential naming usually happens by default right out of your camera or smartphone.

Step 2: Configure Your Cloudflare Images Account

To serve images at scale efficiently, we route them through a CDN.

  1. Copy your Cloudflare Account ID from the dashboard.
  2. Generate an API token with permissions to read and write Cloudflare Images.
  3. Set up your delivery variants in the Cloudflare dashboard (e.g., 320, 640, 1024).

Step 3: Set Up Cloud Images Toolkit (CIT)

CIT acts as a bridge between your local file system and your CDN. It handles syncing, caching, and provides a local UI to configure interactive widgets.

Create a cit-config.json file in a new project folder:

[
  {
    "name": "My Photo-360 Collection",
    "cdn": "cloudflare",
    "syncDataPath": "./cit-sync-data.json",
    "imsDataFolder": "./ims-widgets/",
    "imsDataMinify": true,
    "imgSrcFolder": "./cit-store/",
    "apiKeyPath": "./CIT_API_KEY",
    "projectId": "<YOUR_CLOUDFLARE_ACCOUNT_ID>",
    "imgUrlTemplate": "https://imagedelivery.net/<YOUR_ACCOUNT_HASH>/{UID}/{VARIANT}",
    "previewUrlTemplate": "https://imagedelivery.net/<YOUR_ACCOUNT_HASH>/{UID}/{VARIANT}",
    "imsUrlTemplate": "https://<YOUR_DOMAIN>/ims/{HASH}.json",
    "variants": ["320", "640", "1024", "2048", "public"],
    "imgTypes": ["png", "jpg", "jpeg", "webp"],
    "wsPort": 8080,
    "httpPort": 8081
  }
]

Enter fullscreen mode Exit fullscreen mode

Save your API token inside a file named CIT_API_KEY in the same directory.

Place your sequentially named images inside a specific subfolder within the ./cit-store/ directory. Tip: Keep your folder structure clear and ensure your folder names are as unique as possible. Because folder navigation in the CIT dashboard relies on sub-path filtering, using distinct folder names (e.g., cit-store/sneakers-red-v1/) makes it significantly easier to locate and manage your product assets.

Important: Add your API key and the images folder to your .gitignore file to prevent committing secrets or large raw images to your repository:

CIT_API_KEY
cit-store/

Enter fullscreen mode Exit fullscreen mode

The remaining files, like your configuration (cit-config.json), sync data (cit-sync-data.json), and widget configs (ims-widgets/), are designed to be committed. Tracking these files allows your team to collaborate on widget configurations via Git.

Step 4: Launch the CIT Dashboard

Start the toolkit using npx:

npx cloud-images-toolkit

Enter fullscreen mode Exit fullscreen mode

This command boots up a local web application. CIT will automatically detect your local files, sync them to Cloudflare Images, and make them available via your CDN.

Cloud Images Toolkit UI

Step 5: Configure the Spinner Widget

  1. Open the CIT web interface in your browser.
  2. Navigate to your newly synced image folder.
  3. Select all the frames for your product using the "Select All" button in the right sidebar.

CIT:

  1. Scroll down the sidebar and select the Spinner animation widget type.

CIT:

The widget editor will open. Here you can tweak settings like rotation direction, speed, autoplay, and inertia. You will see a live interactive preview of exactly how the spinner behaves.

CIT: IMS Widget Composer view

Once you are happy with the behavior, click Save File. CIT generates a lightweight .json configuration file named after its content hash and places it in your ./ims-widgets/ directory.

Step 6: Embed on Your Website

Upload the generated JSON file to your web server so it is publicly accessible via HTTPS.

Now, we use Immersive Media Spots (IMS) to render it. IMS provides framework-agnostic web components that work in vanilla HTML, React, Vue, or any other stack. Add the IMS viewer script to your page:

<script type="module" src="https://cdn.jsdelivr.net/npm/immersive-media-spots@latest/viewer/+esm"></script>

Enter fullscreen mode Exit fullscreen mode

Finally, place the viewer component wherever you want the 360° spinner to appear, pointing src-data to your JSON config URL:

<ims-viewer src-data="https://yourdomain.com/ims/abcdef123456.json"></ims-viewer>

Enter fullscreen mode Exit fullscreen mode

(Optional) If you prefer not to host the JSON file separately, the CIT editor also provides a Base64 encoded string that you can embed directly into the src-data attribute.

Step 7: Customize with CSS

IMS widgets are entirely themeable via CSS custom properties. Because there is no CSS framework lock-in, you can easily tweak colors, dimensions, and transitions to match your brand directly in your stylesheet:

ims-viewer {
  /* Example customizations */
  width: 800px;
  aspect-ratio: 4 / 3;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  border-radius: 12px;
}

Enter fullscreen mode Exit fullscreen mode

The Result

Immersive Media Spots: Spinner animation widget view

Interactive Demo (you can inspect the page source code)

Under the Hood

What makes this setup performant is how the <ims-viewer> handles loading. Built on top of Symbiote.js, it dynamically imports only the specific widget code (the spinner logic) when it is actually needed. It uses the IntersectionObserver to defer initialization until the element scrolls into the viewport. Furthermore, it automatically selects the most optimal image resolution variant based on the container size and device DPI, while the CDN automatically detects and serves the most efficient image format (such as WebP or AVIF) supported by the user's browser.

You get a scalable, performant 360-degree product viewer without writing complex frontend logic or managing massive image payloads manually. By delegating asset processing to CIT and rendering to IMS, you keep your main web application bundle small and your workflows clean.

Check out the Cloud Images Toolkit and Immersive Media Spots repositories on GitHub to explore the source code or set up your own asset pipeline.