setTimeout과 setInterval은 롤러에서 타이머를 제거하는 사고를 실현한다

6951 단어
PS: 각 분야의 신들이 가르쳐 주기를 바랍니다
 
setTimeout(function,time): 단위 시간에 함수 function을 한 번 실행하고 나중에 실행하지 않습니다.타이머 지우기 방법은clearTimeout입니다.
setInterval(function,time): 단위 시간에 함수 function을 한 번 실행하고 이후 함수를 반복합니다.타이머 제거 방법은clearInterval입니다.
그 중에서function은 함수 이름으로 그 함수 이름이 AutoPlay라고 가정하고 AutoPlay라고 쓰면 이 함수를 나타내고, AutoPlay()로 쓰면 함수 실행 후의 결과를 나타낸다.그러나 두 가지 작법 함수는 결국 모두 실행된다.
물론 우리는 함수를 통해 자신의 특성을 호출하여 setTimeout으로 영구적으로 순환하는 함수를 만들 수 있다. 그러면 그 효과는 setInterval과 같지만 실제로는 미세한 부분에서 차이가 있다
setTimeout:
eg1:
function Automatism(){
    func1... // 400ms
    setTimeout(Automatism(), 300);
}
setTimeout(Automatism(), 600); // :func1 400s,600ms 400s

 
setInterval: 
eg2:
function Automatism(){
    func1... // 400ms
} setInterval(Automatism(), 600);  // :func1 , 600ms 

 
 
지우기 시간:
정시를 없애면 누구나 다 할 수 있지만 이번에 제가 윤회를 훑는 과정에서 도저히 지워지지 않는다는 것을 발견했습니다. 몇 번의 테스트를 통해 set Timeout을 사용해서 자신을 호출했기 때문입니다.어떻게eg1의 예, 즉 우리가 set Timeout을 사용하여 중복 실행에 도달했을 때clear Timeout이 효력을 잃은 것 같습니다.
마지막으로 set Interval로 바꾸면 정상적으로 일할 수 있습니다.
 
마지막으로 코드를 붙여넣습니다.
HTML:
<div class="companyBusiness" id="companyBusiness">
    <dd id="album">
        <img src="../images/companyBusiness.png" />
        <img src="../images/companyBusiness.png" />
        <img src="../images/companyBusiness.png" />
        <img src="../images/companyBusiness.png" />
    </dd>
    <p id="circle">
        <span class="on"></span>
        <span></span>
        <span></span>
        <span></span>
    </p>
</div>

 
CSS:
.companyBusiness{position: relative;width: 340px;height: 200px;overflow: hidden;display: inline-block;vertical-align: top;}
.companyBusiness dd{position: relative;display: inline-block;vertical-align: top;width: 1360px;transition: margin-left 0.8s ease-in-out;}
.companyBusiness dd img{width: 340px;height: auto;vertical-align: top;}
.companyBusiness p{position: absolute;bottom: 14px;right: 14px;}
.companyBusiness p span{display: inline-block;width: 7px;height: 7px;border-radius: 20px;background-color: #fff;margin-left: 5px;}
.companyBusiness p span.on{background-color: #da1622;}
.foucs_middle dt{width: 311px;display: inline-block;vertical-align: top;}
.foucs_middle dt img{width: 100%;height: auto;}

 
JS(타이머 지우기):
var timer = null;
$("#circle span").click(function(){
    clearTimeout(timer);
    var _thisIndex = $(this).index();
    var dis = -(_thisIndex) * parseInt($("#companyBusiness").width());
    $("#album").css("margin-left", dis);
    $(this).addClass("on").siblings().removeClass("on");
    timer = setTimeout("AutoPlay()", 3000);
});
function AutoPlay() {
    var _thisIndex = $("#circle span.on").index();
    _thisIndex++;
    if (_thisIndex > 3) _thisIndex = 0;
    $("#circle span").eq(_thisIndex).trigger("click");
    setTimeout("AutoPlay()", 3000);
}
$(function() {
    timer = setTimeout("AutoPlay()", 3000);
})

 
JS(타이머를 지울 수 없음):
var timer = null;
$("#circle span").click(function(){
    clearInterval(timer);
    var _thisIndex = $(this).index();
    var dis = -(_thisIndex) * parseInt($("#companyBusiness").width());
    $("#album").css("margin-left", dis);
    $(this).addClass("on").siblings().removeClass("on");
    timer = setInterval("AutoPlay()", 3000);
});
function AutoPlay() {
    var _thisIndex = $("#circle span.on").index();
    _thisIndex++;
    if (_thisIndex > 3) _thisIndex = 0;
    $("#circle span").eq(_thisIndex).trigger("click");
}
$(function() {
    timer = setInterval("AutoPlay()", 3000);
})

 
  

좋은 웹페이지 즐겨찾기