js 진도 게이지

1356 단어 JavaScripthtml
진도 조 는 어떤 일의 완 성 량 의 백분율 로 우 리 는 그것 을 사용 하 는 경우 가 많다 는 것 을 나타 낸다.
 
나 는 js 코드 로 진도 표를 썼 는데, 스타일 이 그리 예 쁘 지 않 을 것 이다!진 도 량 이 등차 수열 이 아니 기 위해 서 나 는 난수 로 진도 수열 의 차 이 를 만 들 었 다.
 
다음은 코드: (여러분 의 지적 을 바 랍 니 다!)
 
<html>
<head>
	<title>js    </title>
</head>
<body>
	<p align="center">
	<span id="show" style="border:1px solid red;width:800px;height:30px;">
		<hr id="bar" align="left" style="height:30px;width:0px;" color="red">
	</span>
	<span id="total"></span>
	</p>
</body>
	<script language="JavaScript">
		var per=0;
		function run(){
			per+=parseInt(Math.random()*1000000%20);
			document.getElementById("bar").style.width=per;
			if(per>=800)per=800;
			document.getElementById("total").innerHTML=parseInt((per/800)*100)+'%';
			if(per>=800){
				clearTimeout(timeout);
				return;
			}
			var timeout=setTimeout("run()",100);
		}
		onload=run();
	</script>
</html>

 
 
다음은 첨부 파일 입 니 다. 여러분 은 다운로드 해서 효 과 를 볼 수 있 습 니 다!
 

좋은 웹페이지 즐겨찾기