Android WebView: CSS 比例尺不隐藏原件

Android WebView: CSS scale doesn't hide original

我目前面临以下问题:

我在主 activity(api 级别 22)中添加了一个 WebView 并加载了一些网络内容。
在某些时候,您必须 select 列表中的一名或多名员工,selected 员工正在 selected with a little transform: scale( , ) 动画。
然而,WebView 不会在动画期间和之后隐藏原始元素。

图像:http://i.imgur.com/FUAszRu.png

如您所见,保留了原始元素,或者有时只保留了一小部分。

这里是我用的css:

.employee {
    width: 100%;
    font-size: 40px;
    font-weight: bold;
    background-color: #fff;
    margin-bottom: 12px;
    padding: 70px 12px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .75);
    color: #444;
    cursor: pointer;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

.employee.selected {
    box-shadow: 0 0 10px rgba(0, 0, 0, .75);
    background-color: #E6EE9C;
    -o-transform: scale(0.95, 0.95);
    -ms-transform: scale(0.95, 0.95);
    -moz-transform: scale(0.95, 0.95);
    -webkit-transform: scale(0.95, 0.95);
    transform: scale(0.95, 0.95);
}

这种现象也适用于GoogleChrome(V:46.0.x)和标准android浏览器。取消select一件物品会立即移除所有其他残留物。 有没有办法用 jQuery 动画而不是 CSS3 来处理这个问题?一种更新我的设备 (Acer Iconia One 10 (nt.lc8ee.001)) 以使其正常工作而不会出现渲染问题的方法?

非常感谢!

现在我使用了不同的 CSS 来解决这个问题。 我添加了一个包装器 class + element:

.employee-wrapper {
    height: 180px;
    margin-bottom: 12px;
}

并像这样修改其他 classes:

.employee {
    width: 100%;
    font-size: 40px;
    line-height: 180px;
    font-weight: bold;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .75);
    color: #444;
    cursor: pointer;
    margin-top: 0;
}

.employee.selected {
    box-shadow: 0 0 10px rgba(0, 0, 0, .75);
    background-color: #E6EE9C;
    width: 95%;
    margin: 6px 2.5%;
    line-height: 168px;
    font-size: 38px;
}

现在它看起来一样,但有所不同,它不会在我的设备上产生任何渲染问题。