gpt4 book ai didi

javascript - 通过 JavaScript 从元素中删除 -webkit-transform

转载 作者:太空宇宙 更新时间:2023-11-04 15:19:34 26 4
gpt4 key购买 nike

我正在尝试解决这个错误:http://code.google.com/p/chromium/issues/detail?id=20574考虑执行转换,然后在通过 JavaScript 将元素定位在其结束位置时删除它。

我试过了

document.getElementById('popover').style.setProperty("-webkit-transform", "translate3d(0,0,0)")

document.getElementById('popover').style.setProperty("-webkit-transform", "none")

似乎没有任何效果。

如果我删除转换并手动定位元素,则固定元素会正常运行。

下面是转换本身:

#popover.open {
display: block;
position: relative;
-webkit-animation: openpopup 0.2s 1;
-webkit-animation-fill-mode: forwards;
}
#popover.closed {
-webkit-animation: closepopup 0.2s 1;
-webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes openpopup {
from {
-webkit-transform: translate3d(0, 100%, 0);
}
to {
-webkit-transform: translate3d(0, 0%, 0);
}
}
@-webkit-keyframes closepopup {
from {
-webkit-transform: translate3d(0, 0%, 0);
}
to {
-webkit-transform: translate3d(0, 100%, 0);
}
}

最佳答案

Javascript 对您尝试更改的 css 属性有不同的名称。它称为 WebkitTransform

document.getElementById('popover').style.setProperty("WebkitTransform", "none"); 应该有效。

关于javascript - 通过 JavaScript 从元素中删除 -webkit-transform,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14734120/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com