我希望我的导航栏背景颜色在我悬停时从透明慢慢变为白色。我使用这个脚本来隐藏导航栏,当我向下滚动和向上滚动时弹出导航栏,它工作得很好。设法在悬停状态下更改颜色,但不进行过渡...
有人能帮我添加过渡吗?请参阅www.maimoncpa.com
发布于 2020-04-16 03:30:56
考虑下面的代码,它涉及到nav
nav{
-webkit-transition: background-color 2s ease-out;
-moz-transition: background-color 2s ease-out;
-o-transition: background-color 2s ease-out;
transition: background-color 2s ease-out;
}
nav:hover {
background: white;
}
https://stackoverflow.com/questions/61236907
复制相似问题