先把该div的displa设为none;
display: none;
再在script里写:
<script>
function ShowLayer(){ //延迟出现,不然会出现加载空白情况
document.getElementById("photo_box").style.display="block";
}
setTimeout("ShowLayer()",500); //后面跟的是延时的时间
</script>
先把该div的displa设为none;
display: none;
再在script里写:
<script>
function ShowLayer(){ //延迟出现,不然会出现加载空白情况
document.getElementById("photo_box").style.display="block";
}
setTimeout("ShowLayer()",500); //后面跟的是延时的时间
</script>