ページが読み込まれてから2秒後に.affor divが必要になります。私はjquery、任意のアドバイスでこれをしようとしていますか?あなたは.delay()
のためのマニュアルを読む必要がありページが読み込まれてから2秒後にdivを表示する必要があります
$(document).ready(function(){
$('.affor').hide(function(){
$(this).delay(function(){
$(this).show();
});
});
});
.affor{
width:200px;
height:200px;
background-color: rgb(39, 60, 79);
/*border-radius: 100px;*/
color:white;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
transition: 2s ease-in;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class=".affor"> Hello </div>