0
我目前正在編輯reddit.com上的subreddit,並且我的方法受限於僅限於CSS。 當您將鼠標懸停在左側的菜單上時,我設法獲得疊加效果。它正在消失,但我不知道如何淡出它。由於轉換不起作用我嘗試了另一種動畫方法。使覆蓋緩慢淡出?
TL; DR:覆蓋淡入:是 - 淡出:不:(
下面是我使用的代碼的某些部分:
#sr-header-area .drop-choices:hover:before {
content: "";
font-size: 13px;
display: block;
position: fixed !important;
height: 100%;
width: 100%;
margin-left: 300px;
pointer-events: none;
z-index: 700 !important;
animation: fade 0.5s ease;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;}
@keyframes fade {
0% {background-color: rgba(0, 0, 0, 0);}
100% {background-color: rgba(0, 0, 0, 0.4);}}
也許有人可以幫助我在這裏
謝謝!這真的起作用了! :) – Cello