TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Retrieving multiple images with a single request?

1 点作者 shanebellone超过 1 年前
Is there an existing solution that retrieves n-images with a single request? Rather than an individual request for each image?<p>Note: I am familiar with HTTP2 multiplexing.

4 条评论

timoteostewart超过 1 年前
I think JS libraries such as gif.js and gifplayer.js can display specific frames of a gif. So possibly you could create an animated gif whose frames are your portfolio of images, and so you could retrieve n images using your lone n-frame gif image.
agnokapathetic超过 1 年前
CSS Image Sprites <a href="https:&#x2F;&#x2F;www.w3schools.com&#x2F;Css&#x2F;css_image_sprites.asp" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.w3schools.com&#x2F;Css&#x2F;css_image_sprites.asp</a>
评论 #38019219 未加载
pestatije超过 1 年前
You could do that with blobs and client code...or use mjpeg movies...im not aware of multiple images as such though...itd be worth researching multipart mime types i think
评论 #38023592 未加载
timoteostewart超过 1 年前
Could you transmit multiple images in a zip file?