내가 게시물에 표시 다음 해요 : jQuery fadeIn() different intervals with multiple div'sjQuery를 fadeIn() 간격으로 여러 사업부의
하지만 난 그냥 캔트 그것을 얻 ... 무슨 잘못을
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script type="text/javascript">
$('.fadeIn').each(function(){
var $this = $(this);
$this.before('<div> </div>');
setTimeout(function(){
$this.prev().remove();
$this.fadeIn(Math.floor(Math.random()*1500));
}, Math.floor(Math.random()*1500));
}
);
</script>
<style>
.fadeIn{
display: none;
}
</style>
</head>
<body>
<div class="fadeIn">Test 1</div>
<div class="fadeIn">Test 2</div>
<div class="fadeIn">Test 3</div>
<div class="fadeIn">Test 4</div>
<div class="fadeIn">Test 5</div>
<div class="fadeIn">Test 6</div>
</body>
</html>
jQuery 라이브러리를 포함해야합니다. – ManseUK
DOM을 실행하기 전에'$ (function() {}) '문에 코드를 래핑해야합니다. – ManseUK