MenFn() { console.log(this.$refs.anicon) this.icon_open = false }, 让refs获取的DOM在三毫秒后css隐藏
时间: 2024-02-03 15:01:41 浏览: 48
1秒后左右隐藏输入的密码
您可以使用 `setTimeout` 函数来在三毫秒后隐藏DOM元素。代码如下:
```
MenFn() {
console.log(this.$refs.anicon)
this.icon_open = false;
setTimeout(() => {
this.$refs.anicon.style.display = 'none';
}, 3);
}
```
这将在 `MenFn` 函数执行后的三毫秒后将 `anicon` 元素的 `display` 样式设置为 `none`,从而隐藏它。
阅读全文