我有這個簡單的隱藏/顯示toggle
它懸停時淡入/淡出文本。唯一的問題是,我不希望它是不可視的(因爲它佔用了不必要的空間)。但是當我添加顯示元素時,淡入淡出功能不再起作用。隱藏/顯示在css淡入時懸停與褪色
#stuff {
opacity: 0.0;
-webkit-transition: all 400ms ease-in-out;
-moz-transition: all 400ms ease-in-out;
-ms-transition: all 400ms ease-in-out;
-o-transition: all 400ms ease-in-out;
transition: all 400ms ease-in-out;
color: black;
text-align: center;
border-style: solid;
border-width: 1px;
border-color: #e0e0e0;
border-radius: 25px;
width: 200px;
}
#hover {
width: 150px;
height: 10px;
margin-bottom: 15px;
cursor: pointer;
float: center;
font-family: 'Open Sans', FontAwesome;
font-weight: 600;
}
#hover:hover+#stuff {
opacity: 1.0;
display: inline-block;
}
`
<div id="hover">HOVER HERE</div>
<div id="stuff">Revealed text</div>
,但只是被隱藏了:jsfiddle
WITHOUT的動畫漸變,但徘徊時,不佔用空間jsfiddle
出現是否有可能保持淡入淡出的動畫,而文字只是不可見?
您無法爲'display'屬性設置動畫。 –