1
我創建了下面的代碼來顯示一個彈出窗口,它可以正常工作,之後我添加的動畫具有彈出效果。但是,如果我關閉並嘗試重新打開它,動畫不顯示?模態立即出現。 我該如何解決它?HTML模式彈出式動畫不能正常工作
<div id="overlay">
<div class="popout">
<p>Content you want the user to see goes here.</p>
Click here to [<a href='#' onclick='overlay()'>close</a>]
</div>
</div>
<style>
#overlay {
visibility: hidden;
position: absolute;
left: 0px;
top: 0px;
width:100%;
height:100%;
text-align:center;
z-index: 1000;
}
#overlay div {
width:300px;
margin: 100px auto;
background-color: #fff;
border:1px solid #000;
padding:15px;
text-align:center;
}
.popout {
animation: popout 1s ease;
-webkit-animation: popout 1s ease;
}
@keyframes popout {
from{transform:scale(0)}
80%{transform:scale(1.2)}
to{transform:scale(1)}
}
@-webkit-keyframes popout {
from{-webkit-transform:scale(0)}
80%{-webkit-transform:scale(1.2)}
to{-webkit-transform:scale(1)}
}
</style>
<script>
function overlay() {
\t el = document.getElementById("overlay");
\t el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible";
}
</script>
<a href='#' onclick='overlay()'>Click here to show the overlay</a>
我應該做了,我用firefox記 - 此代碼甚至不設置動畫第一時間。 – Csarg
我發佈了一個錯誤的jsfiddle鏈接,你能檢查更新嗎? https://jsfiddle.net/xapdhxv3/1/在Firefox中爲我工作 –
謝謝。這個工作 - 以任何方式使它淡出以同樣的方式點擊關閉? – Csarg