作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在跟踪我的项目中的错误,在 iOS 和桌面浏览器上工作,在 Android 上失败。
我认为这可能与我的 FileReader 有关?任何见解表示赞赏!
function handleImage(e) {
var reader = new FileReader();
reader.onload = function(event) {
var img = new Image();
img.onload = function() {
alert("alert 2");
images.length = 0;
images.push(img);
imageLoaded = true;
$('#changePhoto').removeClass('hidden');
img.xPos = w / 2;
img.yPos = h / 2;
img.initWidth = img.width;
img.initHeight = img.height;
img.currentWidth = scale(img.initHeight, viewableArea, img.initWidth);
img.currentHeight = viewableArea;
if (img.currentWidth < viewableArea) {
img.currentWidth = viewableArea;
img.currentHeight = scale(img.initWidth, viewableArea, img.initHeight);
}
img.initAngle = 0;
img.angle = 0;
};
img.src = event.target.result;
};
reader.readAsDataURL(e.target.files[0]);
}
最佳答案
事实证明 requestAnimationFrame 是我的问题,我添加了这个垫片,并解决了它: https://gist.github.com/paulirish/1579671
关于javascript - reader.onload 不适用于 Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24897812/
我是一名优秀的程序员,十分优秀!