gpt4 book ai didi

CSS - 使鼠标指针在几秒钟后消失

转载 作者:太空宇宙 更新时间:2023-11-03 21:07:02 28 4
gpt4 key购买 nike

目标是在我将鼠标悬停在视频(例如 youtube)上一段时间后隐藏我的鼠标指针,为此我需要使用 css。

这是我现在的动画。

  #container{
&:hover{
cursor: pointer;
.video-controls-bar{
opacity: 1;
}
.bottom {
margin-bottom: 44px;
}
}
}

这是我的控制栏,当我将鼠标悬停在上面时,我的 div 底部会出现,但现在我需要在几秒钟后隐藏鼠标。提前致谢

最佳答案

您可以使用像这样的关键帧动画:

button:hover {
animation: hideMouse 4s;

}

@keyframes hideMouse {
0% {
cursor: pointer;
}
99% {
cursor: pointer;
}
100% {
cursor: none;
}
}

关于CSS - 使鼠标指针在几秒钟后消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51671030/

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