source for sakino.kelbie.scot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
481 B

7 months ago
  1. var counter = 10; //当該電子ブックページに遷移するまでのカウントダウン秒数指定
  2. document.getElementById("PageJumpCountDown").innerHTML = counter; //初期値の表示
  3. var IntervalID = setInterval("CountDown()",1000);
  4. function CountDown(){
  5. counter--;
  6. document.getElementById("PageJumpCountDown").innerHTML = counter;
  7. if (counter <= 0){
  8. clearInterval(IntervalID);
  9. location.href= "../_SWF_Window.html?pagecode=4";
  10. }
  11. }