0
即時通訊有一個問題,我在網站加載時調用淡入淡出,但由於css過渡效果元素去完全不透明立即淡出然後淡入,即時通訊嘗試找到解決的辦法,因爲它看起來壞Jquery fadeIn()受CSS過渡影響
jQuery的
$(window).on("load", function() {
setTimeout(function() {
$('#contactbutton').fadeIn(2000);
}, 4000);
HTML
<div class="contactbutton" style="display:none;" id="contactbutton">CONTACT</div>
CSS
.contactbutton {
position:absolute;
top:10px;
right:10px;
height:35px;
text-align:center;
font-size:12px;
border-radius:25px;
width:160px;
color:#e97861;
background:#FFFFFF;
line-height:37px;
border:1px solid #fff;
cursor:pointer;
z-index:9999;
transition: all .5s;
}
我沒有看到你的CSS任何'transition'財產? –
@ Al.G。轉換不適用於'display'。 –
道歉,它在那裏,但是當我刪除它的工作,因爲它應該生病再次添加它現在 – Ray