箱元素我有jQuery的一個問題,表明我想顯示爲一個盒子.. -webkit-箱/ -moz-盒等fadeIn();使用jQuery和CSS3
而是一個元素。如果我在jQuery中使用fadeIn函數,它會淡入一個塊元素? 我想這是一個常見問題,但我找不到任何幫助我的東西。
任何提示?
CSS
.page-wrapper {
min-height: 100%;
display: -webkit-box;
-webkit-box-align: center;
-webkit-box-pack: center;
-webkit-box-orient: vertical;
display: -moz-box;
-moz-box-align: center;
-moz-box-pack: center;
-moz-box-orient: vertical;
}
#open-menu {
position: fixed;
color: #fff;
top: 0px;
left: 0px;
font-size: 2em;
padding: 5px;
}
#page-wrapper-menu {
position: fixed;
width: 100%;
background-color: rgba(0, 0, 0, 0.9);
color: #fff;
text-align: center;
overflow: hidden;
display: none;
}
jQuery的代碼
$('#open-menu').click(function(){
$('#page-wrapper-menu').fadeIn();
});
$('#page-wrapper-menu').click(function(){
$('#page-wrapper-menu').fadeOut();
});
淡入()設置的CSS顯示由設計到框。 – Flea777
提供您使用的代碼,這可能會幫助您更清楚地瞭解您的問題。 – 2013-10-07 09:08:25
Flea777是啊,我知道,但我怎麼能有相同的效果,但使其淡入盒元素。 –