fix(ImagePreview): image blurred after scale on iOS (#6496)

This commit is contained in:
neverland
2020-06-09 22:42:16 +08:00
committed by GitHub
parent c9f9e36494
commit e01699a74b
2 changed files with 2 additions and 2 deletions

View File

@@ -103,7 +103,7 @@ export default createComponent({
};
if (scale !== 1) {
style.transform = `scale3d(${scale}, ${scale}, 1) translate(${
style.transform = `scale(${scale}, ${scale}) translate(${
this.moveX / scale
}px, ${this.moveY / scale}px)`;
}