iPad图片加载限制的解决办法
似乎 iPad 在某个时间点(大约 6MB)后停止在 HTML / JavaScript 应用程序中加载图像,之后应用程序中的所有图像都显示为空白或“?”。
如果使用 标签有问题,那么 JavaScript 中是否有解决方案或替代方案?
Seems like iPad stops loading Images in a HTML / JavaScript application after a certain point (around 6MB) after which all images in the application are shown as blank or '?'.
If using <img>
tags is a problem, then is there a solution or alternative to this in JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您可以使用画布标签。来自此来源:
另一种解决方案是简单地将内容剪切为几页,每页的图像小于 6MB。这样,当您重新加载浏览器时,就会重置限制。
It appears you can use a canvas tag. From this source:
Another solution is to simply cut the content in several pages, each one with less than 6MB in images. That way when you reload the browser resets the limit.