JavaScript 무 작위 출석 체크 프로그램 구현

3548 단어 js지명 절차
본 논문 의 사례 는 js 가 랜 덤 지명 프로그램 을 실현 하 는 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
효과:

녹음 한 gif 효과 도 는 그리 이상 적 이지 않 지만,사실은 속도 가 이것 보다 빠르다.
생각:
1.배열 을 정의 하고 명단 을 저장 합 니 다.
2.타 이 머 를 시작 하고 간격 을 설정 하여 함 수 를 계속 호출 합 니 다.
3.Math.random()은 무 작위 로 아래 표 시 를 가 져 오고 아래 표 시 된 무 작위 변환 에 따라 배열 에 대응 하 는 요 소 를 추출 합 니 다.
4.논리 코드 가 완성 되면 DOM 대상 을 통 해 변 화 된 결 과 를 페이지 에 보 여 줍 니 다.
JS 코드:

<script>
var arr = ["  ", "   ", "   ", "   ", "   ", "    ", "   ", "   ", "    "]

var myTimer = null //     

//           ,          
function goAndStop(){
 //             ,   ,  ,     ;
 if(myTimer == null){
  //      ,    ,    
  myTimer = setInterval(function(){
   // 1、    
   var index = parseInt(Math.random()*arr.length)

   // 2、           ,      
   document.getElementById("stuName").innerHTML = arr[index]

  },10);

  //        ,      ,        
  document.getElementById("btn").value = "   "
 }else{
  //            ,      ,       
  window.clearInterval(myTimer)
  myTimer = null
  document.getElementById("btn").value = "   "
 }
}
</script>
HTML+CSS+JS 소스 코드:

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <meta http-equiv="X-UA-Compatible" content="ie=edge">
 <title>Document</title>
 <style>
 #box{
  width:200px;
  height: 300px;
  margin: 100px auto;
 }

 #stuName{
  width: 100%;
  height: 80px;
  border: 2px solid gray;
  line-height: 80px;
  text-align: center;
  font-size: 30px;
  color:orange;
  font-weight: bold;
 }

 input{
  margin-top:30px;
  width: 100%;
  height: 50px;
  font-size: 20px;
  font-weight: bold;
 }

 </style>
</head>
<body>
 <div id="box">
  <div id="stuName">
       
  </div>
  <input id="btn" type="button" value="   " onclick="goAndStop()">
 </div>
</body>
</html>
<script>
var arr = ["  ", "   ", "   ", "   ", "   ", "    ", "   ", "   ", "    "]

var myTimer = null 
function goAndStop(){
 if(myTimer == null){
  myTimer = setInterval(function(){
   var index = parseInt(Math.random()*arr.length)

   document.getElementById("stuName").innerHTML = arr[index]

  },10);
  document.getElementById("btn").value = "   "
 }else{
  window.clearInterval(myTimer)
  myTimer = null
  document.getElementById("btn").value = "   "
 }
}
</script>
이것 은 제 생각 입 니 다.여러분 께 공유 하 겠 습 니 다!
만약 당신 에 게 더 좋 은 방법 이 있다 면,아래 의 댓 글 이 서로 교류 하 는 것 을 환영 합 니 다!
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기