home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 January / Gamestar_58_2004-01_dvd.iso / DVDStar / OdCtenaru / Click / data / efekty.js < prev    next >
Text File  |  2003-08-20  |  3KB  |  129 lines

  1. // This File Copyright (c) by Click Team 2003, All rights reserved.
  2. // Na dokument se vztahujφ autorskß prßva!
  3. // Kopφrovßnφ jakΘkoliv Φßsti k≤du je p°φsn∞ zakßzßno!
  4.  
  5.  
  6. var op = 0;
  7.  
  8. function unfade()
  9. {
  10.  if (op < 100)
  11.  {
  12.   op = op + 20;
  13.   page.style.filter = 'alpha(opacity='+op+')';
  14.   setTimeout("unfade();", 1);
  15.  }
  16. }
  17.  
  18.  
  19. col = new Array()
  20. col[0]="FFFFFF"
  21. col[1]="CCCCCC"
  22.  
  23. i_col=0
  24. doani=1
  25. var timer
  26. var thislink
  27.  
  28. function animatelink() {
  29.     if (document.all) {
  30.         if (doani==1) {
  31.             if (i_col<=col.length-1) {
  32.                 thislink.color=col[i_col]
  33.                 i_col++
  34.                 timer=setTimeout("animatelink()",50)
  35.             }
  36.             else {
  37.                 i_col=0
  38.                 timer=setTimeout("animatelink()",50)
  39.             }
  40.         }
  41.         else {
  42.             clearTimeout(timer)
  43.         }
  44.     }
  45. }
  46.  
  47. function stopanimation() {
  48.     clearTimeout(timer)
  49.     thislink.color="#FFFFFF"
  50.     doani=0
  51. }   
  52.  
  53. function okno() {
  54.   window.open('data/mainmenu.htm', 'click', 'width=800, height=600, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, top='+(screen.height/2-300)+', left='+(screen.width/2-400));
  55.  
  56. function startanimation(mylink) {
  57.     clearTimeout(timer)
  58.     thislink=eval("document.all."+mylink+".style")
  59.     doani=1
  60.     animatelink()
  61. }    
  62.  
  63. function blur1()
  64. {
  65.   document.all.god.style.filter = 'blur(direction=45)';
  66.   setTimeout("blur2()", 500);
  67. }
  68.  
  69. function blur2()
  70. {
  71.   document.all.god.style.filter = 'blur(direction=90)';
  72.   setTimeout("blur3()", 250);
  73. }
  74.  
  75. function blur3()
  76. {
  77.   document.all.god.style.filter = 'blur(direction=315)';
  78.   setTimeout("blur5()", 100);
  79. }
  80.  
  81. function blur5()
  82. {
  83.   document.all.god.style.filter = 'blur(direction=180)';
  84.   setTimeout("blur6()", 100);
  85. }
  86.  
  87. function blur6()
  88. {
  89.   document.all.god.style.filter = 'blur(direction=360)';
  90.   setTimeout("blur7()", 250);
  91. }
  92.  
  93. function blur7()
  94. {
  95.   document.all.god.style.filter = 'blur(direction=270)';
  96.   setTimeout("blur8()", 250);
  97. }
  98.  
  99. function blur8()
  100. {
  101.   document.all.god.style.filter = 'blur(direction=135)';
  102.   setTimeout("blur9()", 500);
  103. }
  104.  
  105. function blur9()
  106. {
  107.   document.all.god.style.filter = 'blur(direction=225)';
  108.   setTimeout("blur10()", 50);
  109. }
  110.  
  111. function blur10()
  112. {
  113.   document.all.god.style.filter = 'blur(direction=0)';
  114.   setTimeout("blur1()", 100);
  115. }
  116.  
  117. function blik1()
  118. {
  119.   document.all.stovka.style.color = '#ffffff';
  120.   setTimeout("blik2();", 1000);
  121. }
  122.  
  123. function blik2()
  124. {
  125.   document.all.stovka.style.color = '#ff0000';
  126.   setTimeout("blik1();", 1000);
  127. }
  128.