이 글에서는 주로 자바스크립트의 타이머 기반 진행률 표시줄 기능 구현을 소개합니다. 자바스크립트 타이머의 기능과 사용법을 간략하게 분석하고 타이머 기반의 진행률 표시줄 기능에 대한 예를 제공합니다. 이 기사
이 예에서는 JavaScript가 타이머를 기반으로 진행률 표시줄 기능을 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다.
Timer in Javascript
window 다음 메소드 window.setInterval()
은 타이머window.setInterval()
启动定时器
1.setInterval(function(函数),time(每隔多少时间执行一次函数,单位是毫秒))
会重复执行某项操作
2.setTimeout 运用在延迟一段时间,再进行某项操作
setTimeout(function,time)
은 작업을 반복적으로 수행합니다2.setTimeout은 작업을 수행하기 전에 일정 시간을 지연하는 데 사용됩니다
setTimeout(함수 ,time)
,setTimeout은 반복되지 않습니다!
타이머를 중지하세요setTimeout은clearTimeout(object)에 해당합니다. setTiemout 객체를 지웁니다.
setInterval은clearInterval(object)에 해당합니다.설정된 setInterval 객체를 지웁니다사례 제공:
<!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>www.jb51.net js进度条</title>
<style type="text/css">
#outer/*外部*/
{
margin-top:100px;
border:solid black 1px;
background-color:white;
width:1004px;
height:54px;
}
#inner/*内部*/
{
background-color:red;
width:0px;/*首先将内部的宽度定为0,用show()来实现进度条!*/
height:50px;
margin-left:2px;
margin-top:2px;
}
</style>
<script language="javascript">
function show()
{
if(document.getElementById("inner").offsetWidth<1000)//offsetWidth实现的时候width是没有宽度的,而style.width实现的时候则有宽度(px)!
{
document.getElementById("inner").style.width=
document.getElementById("inner").offsetWidth+20+"px";//每次执行show()函数的时候宽度都会加上20!
console.log(document.getElementById("inner").style.width);//console 控制台 :可以在网页上看到width的变化(利用F12)
}
else
{
document.getElementById("inner").style.width=1000+"px";//如果大于1000px的话,只能将1000px赋值给border-width;!
stop();//此时就应该执行停止定时器的函数!
}
}
var timer;//定义在两个函数外面,因为两个函数都会用到!
function start()
{
timeer = window.setInterval(show,200);//每隔200ms调用一次show函数
}
function stop()
{
timer = window.clearInterval(timer);
}
</script>
</head>
<body onload="start()">
<p id="outer">
<p id="inner">
</p>
</p>
</body>
</html>
실행 효과:
위 내용은 타이머를 기반으로 진행률 표시줄을 구현하는 JavaScript의 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!