這是我的整個代碼。我正在試圖做的是讓 - 。當DOM準備好時,第一個div顯示在頁面上,第二個顯示在延遲後,然後是第三個,依此類推直到150.使用jquery一個接一個地加載div延遲
與當前代碼有關的問題是,整個150 div在短暫延遲後立即加載。
My code
-
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test for dashed div</title>
<style type="text/css">
.dashdiv
{
width: 150px;
height: 50px;
background: #ae2d3e;
float:left;
box-shadow: 10px 10px 6px #d4a7b0;
margin: 5px;
}
</style>
</head>
<body>
<?php
for($i =0; $i < 150; $i++)
{
?>
<div class="dashdiv">
This is a div text
</div>
<?php
}
?>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('div.dashdiv').each(function()
{
$(this).hide().delay(1000).fadeIn(1850);
});
});
</script>
</body>
</html>
這裏是一個小提琴:http:// jsfiddle。net/vDLA7/ – wes
非常好的一點提出+1 :) – swapnesh