我正在尝试在页面上剪辑图片。它不适用于Android 4.3内置浏览器及以下版本。
<div class="clipper">
<img class="profilePicture" src="http://excample.com/picture"/>
</div>
和css:
.clipper {
height: 140px;
width: 140px;
position: absolute;
left: 0;
border-radius: 1000px;
z-index: 1000;
overflow: hidden;
@include transform(scale(0));
@include transition(transform 0.3s);
&.scaledUp {
@include transform(scale(1));
}
}
.profilePicture {
height: 140px;
width: 140px;
}
有人说这是因为在Android上溢出:当位置是相对或绝对时隐藏不起作用。我试图通过将整个事物包装在div中并使其位置绝对来修复它。然而它没有用。
或者它与任何其他元素的风格有关,例如?
同样过滤:模糊对Android旧版本似乎也不起作用。