我做了一個搜索模式,它是通過jQuery觸發的,它將類-open
添加到主父div #search-box
。我的問題是,#search-box
將褪色,但input
不會轉換。我不知道爲什麼會發生這種情況。 Here is a link to the full codepen動畫後未觸發的過渡
#search-box {
display: none;
position: absolute;
height: 100%;
width: 100%;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999999999;
input {
border-bottom: 2px solid white;
display: block;
width: 100%;
transform: scale3d(0,1,1);
transform-origin: 0% 50%;
transition: transform 3s;
}
&.-open{
background: rgba(0, 0, 0, .8);
display: block;
animation: fadein .8s;
input{
transform: scale3d(1,1,1);
transition-duration: 10s;
transition-delay: 2s;
}
}
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
這裏是jQuery的
$('a[href="#search"]').click(function() {
$("#search-box").addClass("-open");
setTimeout(function() {
inputSearch.focus();
}, 800);
});
$('a[href="#close"]').click(function() {
$("#search-box").removeClass("-open");
});
啊謝謝你這個有用的信息。我已經更新了codepen,它的工作原理。 https://codepen.io/simonfricker/pen/EZrxoX – Simon