如何在 GeckoFX 中缓存图像
我使用 GeckoFX 渲染一些 Web 应用程序的 GUI。有许多重复的小 16x16 图像通过 javascript 注入到单个 HTML 页面中。
所有这些 IMG 实例都是从 Web 服务器一一下载的,我无法使用缓存控制或过期标头或使用 javascript Image() 来优化此行为。因此,与 Chrome 或 IE 相比,渲染速度非常慢且肮脏。
如何让 GeckoFX 缓存或预加载几个小图像?
I use GeckoFX to render some web application's GUI. There are many repetitive small 16x16 images here and there injected into single HTML page by javascript.
All these IMG instances are downloaded one by one from the web server and I couldn't optimize this behavior using cache-control or expires headers or by using javascript Image(). So rendering is ultra slow and dirty comparing to Chrome or IE.
How can I make GeckoFX to cache or preload a couple of small images?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是通过用跨度替换所有图像来完成的。这些跨度现在使用带有背景图像和浮动的 css 类。
It's done by replacing all images with spans. Those spans are now using css classes with background-image and floating.