ОсновноеRadiotalkПользовательское
MPCHAT - CMS сервис чатов для профессионалов
95   •   Посмотреть все темы

JavaScript - Скрипты

 

37
BLack @BLack
часики
  1. <script language="JavaScript">
  2. <!--
  3. function clockon() {
  4. thistime = new Date()
  5. var hours = thistime.getHours()
  6. var minutes = thistime.getMinutes()
  7. var seconds = thistime.getSeconds()
  8. if (eval(hours) <10) {hours = "0" + hours}
  9. if (eval(minutes) < 10) {minutes = "0" + minutes}
  10. if (seconds < 10) {seconds = "0" + seconds}
  11. thistime = hours + ":" + minutes + ":" + seconds
  12. if (document.all) {
  13. bgclocknoshade.innerHTML = thistime
  14. bgclockshade.innerHTML = thistime
  15. }
  16. if (document.layers) {
  17. document.bgclockshade.document.write ('<div id = "bgclockshade" style = " position:absolute; visibility:visible; font-family:Arial,sans-serif; color:#cccccc; font-size:30px; top:155px; left:152px">' +thistime+ '</div>')
  18. document.bgclocknoshade.document.write ('<div id = "bgclocknoshade" style = "position:absolute; visibility:visible; font-family:Arial,sans-serif; color:#000000; font-size:30px; top:150px; left:150px">' +thistime+ '</div>')
  19. document.close()
  20. }
  21. var timer=setTimeout ("clockon()", 200)
  22. }
  23. //-->
  24. </script>

Отредактировано BLack - 30.06.2007
0
37
BLack @BLack
часы катаются за курсором :Р [b]
  1. <script language="JavaScript">
  2. dCol='ff0000';//цвет даты
  3. fCol='0000ff';//лицевой цвет.
  4. sCol='000000';//секунды
  5. mCol='000000';//минуты
  6. hCol='000000';//часы
  7. ClockHeight=30;
  8. ClockWidth=30;
  9. ClockFromMouseY=0;
  10. ClockFromMouseX=100;
  11. d=new Array("Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота");
  12. m=new Array("Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабр");
  13. date=new Date();
  14. day=date.getDate();
  15. year=date.getYear();
  16. if (year < 2000) year=year+1900;
  17. TodaysDate=" "+d[date.getDay()]+" "+m[date.getMonth()]+" "+day+" "+year;
  18. D=TodaysDate.split('');
  19. H='...';
  20. H=H.split('');
  21. M='....';
  22. M=M.split('');
  23. S='.....';
  24. S=S.split('');
  25. Face='1 2 3 4 5 6 7 8 9 10 11 12';
  26. font='Arial';
  27. size=1;
  28. speed=0.6;
  29. ns=(document.layers);
  30. ie=(document.all);
  31. Face=Face.split(' ');
  32. n=Face.length;
  33. a=size*10;
  34. ymouse=0;
  35. xmouse=0;
  36. scrll=0;
  37. props="<font face="+font+" size="+size+" color="+fCol+"><B>";
  38. props2="<font face="+font+" size="+size+" color="+dCol+"><B>";
  39. Split=360/n;
  40. Dsplit=360/D.length;
  41. HandHeight=ClockHeight/4.5
  42. HandWidth=ClockWidth/4.5
  43. HandY=-7;
  44. HandX=-2.5;
  45. scrll=0;
  46. step=0.06;
  47. currStep=0;
  48. y=new Array();x=new Array();Y=new Array();X=new Array();
  49. for (i=0; i < n; i++){y[i]=0;x[i]=0;Y[i]=0;X[i]=0}
  50. Dy=new Array();Dx=new Array();DY=new Array();DX=new Array();
  51. for (i=0; i < D.length; i++){Dy[i]=0;Dx[i]=0;DY[i]=0;DX[i]=0}
  52. if (ns){
  53. for (i=0; i < D.length; i++)
  54. document.write('<layer name="nsDate'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props2+D[i]+'</font></center></layer>');
  55. for (i=0; i < n; i++)
  56. document.write('<layer name="nsFace'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+Face[i]+'</font></center></layer>');
  57. for (i=0; i < S.length; i++)
  58. document.write('<layer name=nsSeconds'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+sCol+'><center><b>'+S[i]+'</b></center></font></layer>');
  59. for (i=0; i < M.length; i++)
  60. document.write('<layer name=nsMinutes'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+mCol+'><center><b>'+M[i]+'</b></center></font></layer>');
  61. for (i=0; i < H.length; i++)
  62. document.write('<layer name=nsHours'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+hCol+'><center><b>'+H[i]+'</b></center></font></layer>');
  63. }
  64. if (ie){
  65. document.write('<div id="Od" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
  66. for (i=0; i < D.length; i++)
  67. document.write('<div id="ieDate" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props2+D[i]+'</B></font></div>');
  68. document.write('</div></div>');
  69. document.write('<div id="Of" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
  70. for (i=0; i < n; i++)
  71. document.write('<div id="ieFace" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props+Face[i]+'</B></font></div>');
  72. document.write('</div></div>');
  73. document.write('<div id="Oh" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
  74. for (i=0; i < H.length; i++)
  75. document.write('<div id="ieHours" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+hCol+';text-align:center;font-weight:bold">'+H[i]+'</div>');
  76. document.write('</div></div>');
  77. document.write('<div id="Om" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
  78. for (i=0; i < M.length; i++)
  79. document.write('<div id="ieMinutes" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+mCol+';text-align:center;font-weight:bold">'+M[i]+'</div>');
  80. document.write('</div></div>')
  81. document.write('<div id="Os" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
  82. for (i=0; i < S.length; i++)
  83. document.write('<div id="ieSeconds" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+sCol+';text-align:center;font-weight:bold">'+S[i]+'</div>');
  84. document.write('</div></div>')
  85. }
  86. (ns)?window.captureEvents(Event.MOUSEMOVE):0;
  87. function Mouse(evnt){
  88. ymouse = (ns)?evnt.pageY+ClockFromMouseY-(window.pageYOffset):event.y+ClockFromMouseY;
  89. xmouse = (ns)?evnt.pageX+ClockFromMouseX:event.x+ClockFromMouseX;
  90. }
  91. (ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;
  92. function ClockAndAssign(){
  93. time = new Date ();
  94. secs = time.getSeconds();
  95. sec = -1.57 + Math.PI * secs/30;
  96. mins = time.getMinutes();
  97. min = -1.57 + Math.PI * mins/30;
  98. hr = time.getHours();
  99. hrs = -1.575 + Math.PI * hr/6+Math.PI*parseInt(time.getMinutes())/360;
  100. if (ie){
  101. Od.style.top=window.document.body.scrollTop;
  102. Of.style.top=window.document.body.scrollTop;
  103. Oh.style.top=window.document.body.scrollTop;
  104. Om.style.top=window.document.body.scrollTop;
  105. Os.style.top=window.document.body.scrollTop;
  106. }
  107. for (i=0; i < n; i++){
  108. var F=(ns)?document.layers['nsFace'+i]:ieFace[i].style;
  109. F.top=y[i] + ClockHeight*Math.sin(-1.0471 + i*Split*Math.PI/180)+scrll;
  110. F.left=x[i] + ClockWidth*Math.cos(-1.0471 + i*Split*Math.PI/180);
  111. }
  112. for (i=0; i < H.length; i++){
  113. var HL=(ns)?document.layers['nsHours'+i]:ieHours[i].style;
  114. HL.top=y[i]+HandY+(i*HandHeight)*Math.sin(hrs)+scrll;
  115. HL.left=x[i]+HandX+(i*HandWidth)*Math.cos(hrs);
  116. }
  117. for (i=0; i < M.length; i++){
  118. var ML=(ns)?document.layers['nsMinutes'+i]:ieMinutes[i].style;
  119. ML.top=y[i]+HandY+(i*HandHeight)*Math.sin(min)+scrll;
  120. ML.left=x[i]+HandX+(i*HandWidth)*Math.cos(min);
  121. }
  122. for (i=0; i < S.length; i++){
  123. var SL=(ns)?document.layers['nsSeconds'+i]:ieSeconds[i].style;
  124. SL.top=y[i]+HandY+(i*HandHeight)*Math.sin(sec)+scrll;
  125. SL.left=x[i]+HandX+(i*HandWidth)*Math.cos(sec);
  126. }
  127. for (i=0; i < D.length; i++){
  128. var DL=(ns)?document.layers['nsDate'+i]:ieDate[i].style;
  129. DL.top=Dy[i] + ClockHeight*1.5*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;
  130. DL.left=Dx[i] + ClockWidth*1.5*Math.cos(currStep+i*Dsplit*Math.PI/180);
  131. }
  132. currStep-=step;
  133. }
  134. function Delay(){
  135. scrll=(ns)?window.pageYOffset:0;
  136. Dy[0]=Math.round(DY[0]+=((ymouse)-DY[0])*speed);
  137. Dx[0]=Math.round(DX[0]+=((xmouse)-DX[0])*speed);
  138. for (i=1; i < D.length; i++){
  139. Dy[i]=Math.round(DY[i]+=(Dy[i-1]-DY[i])*speed);
  140. Dx[i]=Math.round(DX[i]+=(Dx[i-1]-DX[i])*speed);
  141. }
  142. y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);
  143. x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);
  144. for (i=1; i < n; i++){
  145. y[i]=Math.round(Y[i]+=(y[i-1]-Y[i])*speed);
  146. x[i]=Math.round(X[i]+=(x[i-1]-X[i])*speed);
  147. }
  148. ClockAndAssign();
  149. setTimeout('Delay()',20);
  150. }
  151. if (ns||ie)window.onload=Delay;
  152. </script>

Отредактировано BLack - 30.06.2007
0
37
BLack @BLack
часы в поле формы
  1. <script language="JavaScript">
  2. function fulltime() {
  3. var time=new Date();
  4. document.clock.full.value=time.toLocaleString();
  5. setTimeout('fulltime()',500)
  6. }
  7. </script>
  8. <body bgcolor=ffffff text=ff0000>
  9. <center>
  10. <form name=clock>
  11. <input type=text size=45 name=full>
  12. </form>
  13. <script language="JavaScript">
  14. fulltime();
  15. </script>

Отредактировано BLack - 30.06.2007
0
37
BLack @BLack
таймер
  1. <script language="JavaScript">
  2. <!--
  3. var Temp2;
  4. var timerID = null;
  5. var timerRunning = false;
  6. function showtime() {
  7. now = new Date();
  8. var CurHour = now.getHours();
  9. var CurMinute = now.getMinutes();
  10. var CurMonth = now.getMonth();
  11. var CurDate = now.getDate();
  12. var CurYear = now.getYear();
  13. var CurSecond = now.getSeconds();
  14. now = null;
  15. Hourleft1 = 23 - CurHour
  16. var Hourleft = Math.abs( Hourleft1 )
  17. Minuteleft1 = 59 - CurMinute
  18. var Minuteleft = Math.abs( Minuteleft1 )
  19. Secondleft1 = 59 - CurSecond
  20. var Secondleft = Math.abs( Secondleft1 )
  21. if (CurYear==101) {var Yearleft = 101 - CurYear} else {var Yearleft = 2006 - CurYear};
  22. var Monthleft1 = 11 - CurMonth
  23. var Monthleft = Math.abs( Monthleft1 )
  24. var Dateleft1 = 31 - CurDate
  25. var Dateleft = Math.abs( Dateleft1 )
  26. if (Yearleft!=1) {var ys="s"} else {var ys=""};
  27. if (Monthleft!=1) {var mos="s"} else {var mos=""}
  28. if (Dateleft!=1) {var ds="s"} else {var ds=""}
  29. if (Hourleft!=1) {var hs="s"} else {var hs=""}
  30. if (Minuteleft!=1) {var mis="s"} else {var mis=""}
  31. if (Secondleft!=1) {var ss="s"} else {var ss=""}
  32. Temp2=Yearleft+' year'+ys+', '+Monthleft+' month'+mos+', '+Dateleft+' day'+ds+','+Hourleft+' hour'+hs+', '+Minuteleft+' minute'+mis+', '+Secondleft+' second'+ss+' до Нового года!'
  33. Temp3=Yearleft+' year'+ys+', '+Monthleft+' month'+mos+', '+Dateleft+' day'+ds+', '+Hourleft+' hour'+hs+', '+Minuteleft+' minute'+mis+', '+Secondleft+' second'+ss
  34. window.status=Temp2;
  35. document.frm.left.value=Temp3;
  36. timerID = setTimeout("showtime()",1000);
  37. timerRunning = true;
  38. }
  39. var timerID = null;
  40. var timerRunning = false;
  41. function stopclock () {
  42. if(timerRunning) clearTimeout(timerID);
  43. timerRunning = false;
  44. }
  45. function startclock () {
  46. stopclock();
  47. showtime();
  48. }
  49. //-->
  50. </script>
  51. А этой формой осуществляется вывод данных.
  52. <form name="frm">
  53. <input type="textarea" name="left" size=50 value="С Новым годом!">
  54. </form>

Отредактировано BLack - 30.06.2007
0
105
Human @Human
Астрологический калькулятор
  1. <meta http-equiv = "content-type" content = "text/html; charset = Windows-1251">
  2. <SCRIPT LANGUAGE="JavaScript">
  3. function signs() {
  4. var start = 1901, birthyear = document.zodiac.year.value, date=document.zodiac.date.value, month=document.zodiac.month.selectedIndex;
  5. with (document.zodiac.sign){
  6. if (month == 1 && date >=20 || month == 2 && date <=18) {value = "Водолей";}
  7. if (month == 1 && date > 31) {value = "Ошибка!";}
  8. if (month == 2 && date >=19 || month == 3 && date <=20) {value = "Рыбы";}
  9. if (month == 2 && date > 29) {value = "Ошибка!";}
  10. if (month == 3 && date >=21 || month == 4 && date <=19) {value = "Овен";}
  11. if (month == 3 && date > 31) {value = "Ошибка!";}
  12. if (month == 4 && date >=20 || month == 5 && date <=20) {value = "Телец";}
  13. if (month == 4 && date > 30) {value = "Ошибка!";}
  14. if (month == 5 && date >=21 || month == 6 && date <=21) {value = "Близнецы";}
  15. if (month == 5 && date > 31) {value = "Ошибка!";}
  16. if (month == 6 && date >=22 || month == 7 && date <=22) {value = "Рак";}
  17. if (month == 6 && date > 30) {value = "Ошибка!";}
  18. if (month == 7 && date >=23 || month == 8 && date <=22) {value = "Лев";}
  19. if (month == 7 && date > 31) {value = "Ошибка!";}
  20. if (month == 8 && date >=23 || month == 9 && date <=22) {value = "Дева";}
  21. if (month == 8 && date > 31) {value = "Ошибка!";}
  22. if (month == 9 && date >=23 || month == 10 && date <=22) {value = "Весы";}
  23. if (month == 9 && date > 30) {value = "Ошибка!";}
  24. if (month == 10 && date >=23 || month == 11 && date <=21) {value = "Скорпион";}
  25. if (month == 10 && date > 31) {value = "Ошибка!";}
  26. if (month == 11 && date >=22 || month == 12 && date <=21) {value = "Стрелец";}
  27. if (month == 11 && date > 30) {value = "Ошибка!";}
  28. if (month == 12 && date >=22 || month == 1 && date <=19) {value = "Козерог";}
  29. if (month == 12 && date > 31) {value = "Ошибка!";}
  30. }
  31. x = (start - birthyear) % 12
  32. with (document.zodiac.csign){
  33. if (x == 1 || x == -11) {value = "Крыса";}
  34. if (x == 0) {value = "Бык";}
  35. if (x == 11 || x == -1) {value = "Тигр";}
  36. if (x == 10 || x == -2) {value = "Кролик";}
  37. if (x == 9 || x == -3) {value = "Дракон";}
  38. if (x == 8 || x == -4) {value ="Змея";}
  39. if (x == 7 || x == -5) {value = "Лошадь";}
  40. if (x == 6 || x == -6) {value = "Овца";}
  41. if (x == 5 || x == -7) {value = "Обезьяна";}
  42. if (x == 4 || x == -8) {value = "Петух";}
  43. if (x == 3 || x == -9) {value = "Собака";}
  44. if (x == 2 || x == -10) {value = "Кабан";}
  45. }}
  46. </script>
  47. <form name="zodiac">
  48. <center>
  49. <table bgcolor="#60d4ff" border="2" bordercolor="#000000" rules="none" cellspacing="0" cellpadding="4">
  50. <tr><td><b><i>Year</i></b></td>
  51. <td><div align="right"><input type="text" size="10" name="year" value="Год" onClick=value=""></div></td>
  52. <td>&nbsp;</td>
  53. <tr><td><b><i>Месяц</i></b></td>
  54. <td><div align="right">
  55. <select name="month">
  56. <option value="x">Месяц</option>
  57. <option value="1">Январь</option>
  58. <option value="2">Февраль</option>
  59. <option value="3">Март</option>
  60. <option value="4">Апрель</option>
  61. <option value="5">Май</option>
  62. <option value="6">Июнь</option>
  63. <option value="7">Июль</option>
  64. <option value="8">Август</option>
  65. <option value="9">Сентябрь</option>
  66. <option value="10">Октябрь</option>
  67. <option value="11">Ноябрь</option>
  68. <option value="12">Декабрь</option>
  69. </select></div></td>
  70. <td>&nbsp;</td></tr>
  71. <tr><td><b><i>День</i></b></td>
  72. <td><div align="right"><input type="text" name="date" value="День" size="3" onClick=value=""></td>
  73. <td><input type="button" value="Расчет" onClick="signs()"></div></td></tr>
  74. <tr><td><b><i>Знак Зодиака:</i></b></td>
  75. <td><div align="right"><input type="text" name="sign" size="12" value="" align="right"></div</td></tr>
  76. <td>&nbsp;</td></tr>
  77. <tr><td><b><i>Восточный календарь:</i></b></td>
  78. <td><div align="right"><input type="text" name="csign" size="12"></div></td>
  79. <td>&nbsp;</td></tr>
  80. </table>
  81. </center>
  82. </form>

0
105
Human @Human
Загрузка страницы
  1. <html>
  2. <head>
  3. <title>WOscripts.com - JavaScript - LoadingBar</title>
  4. <META http-equiv="Content-Type" content="text/html; charset=windows-1251">
  5. <META NAME="description" CONTENT="Коллекции CGI, PHP, JavaScript скриптов, Java апплеты, огромное количество документации по разным языкам программирования, анимированные гифы, фоны, полезные программы, форум, ссылки по теме.">
  6. <META NAME="keywords" CONTENT="perl scripts, perl, cgi scripts, cgi, перл, java, java scripts, веб-программирование, web-programming, html, каталог ссылок, документация по веб-программированию, cgi скрипты, java скрипты, игры, java апплеты, апплеты, гифы, скрипты, скрипт, книги по веб-программированию, форум по perl, CGI, Perl, script, HTML">
  7. <!-- HEAD START HERE -->
  8. <style type="text/css">
  9. #divLoadCont {position:absolute; z-index:500; left:0px; top:0px; width:100%; height:98%; clip:rect(0px 100% 100% 0px); background-color:#ffffff; layer-background-color:#ffffff;}
  10. #divLoad1 {position:absolute; layer-background-color:silver; background-color:silver;}
  11. #divLoad2 {position:absolute; left:0px; top:0px; layer-background-color:navy; background-color:navy;}
  12. #divLoadText {position:absolute; background-color:transparent; font-family:arial,helvetica,sans-serif; color:navy; font-size:14px;}
  13. </style>
  14. <script language="JavaScript" type="text/javascript">
  15. /**********************************************************************************
  16. LoadingBar
  17. * Copyright (C) 2001 Thomas Brattli
  18. * This script was released at WOscripts.com
  19. * Visit for more great scripts!
  20. * This may be used and changed freely as long as this msg is intact!
  21. * We will also appreciate any links you could give us.
  22. *********************************************************************************/
  23. function lib_bwcheck(){ //Browsercheck (needed)
  24. this.ver=navigator.appVersion
  25. this.agent=navigator.userAgent
  26. this.dom=document.getElementById?1:0
  27. this.opera5=this.agent.indexOf("Opera 5")>-1
  28. this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom && !this.opera5)?1:0;
  29. this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom && !this.opera5)?1:0;
  30. this.ie4=(document.all && !this.dom && !this.opera5)?1:0;
  31. this.ie=this.ie4||this.ie5||this.ie6
  32. this.mac=this.agent.indexOf("Mac")>-1
  33. this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0;
  34. this.ns4=(document.layers && !this.dom)?1:0;
  35. this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5)
  36. return this
  37. }
  38. var bw=new lib_bwcheck()
  39. /*VARIABLES TO SET START: */
  40. numImages = 10 //How many images you have in your page
  41. loaderWidth = 300 //The width of the loadbar
  42. /*
  43. All other settings, like colors fonts and stuff like that you
  44. have to change in the STYLE section.
  45. IMPORTANT:
  46. To make this actually show the correct results
  47. you have to place THIS code in all images:
  48. onload="loadIt(1)"
  49. Which means that your image should look
  50. something like this:
  51. <img src="whatever.gif" width="10" border="0" height="10" onload="loadIt(1)">
  52. VARIABLES TO SET END: */
  53. // A unit of measure that will be added when setting the position of a layer.
  54. var px = bw.ns4||window.opera?"":"px";
  55. currentImg = 0
  56. //Document size object ********
  57. function lib_doc_size(){
  58. this.x=0;this.x2=bw.ie && document.body.offsetWidth-20||innerWidth||0;
  59. this.y=0;this.y2=bw.ie && document.body.offsetHeight-5||innerHeight||0;
  60. if(!this.x2||!this.y2) return message('Document has no width or height')
  61. this.x50=this.x2/2;this.y50=this.y2/2;
  62. return this;
  63. }
  64. //Lib objects ********************
  65. function lib_obj(obj,nest){
  66. nest=(!nest) ? "":'document.'+nest+'.'
  67. this.evnt=bw.dom? document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+"document.layers." +obj):0;
  68. this.css=bw.dom||bw.ie4?this.evnt.style:this.evnt;
  69. this.ref=this.css
  70. this.w=this.evnt.offsetWidth||this.css.clip.width||
  71. this.ref.width||this.css.pixelWidth||0;
  72. return this
  73. }
  74. //Moving object to **************
  75. lib_obj.prototype.moveIt = function(x,y){
  76. this.x=x; this.y=y; this.css.left=x+px; this.css.top=y+px;
  77. }
  78. //Clipping object to ******
  79. lib_obj.prototype.clipTo = function(t,r,b,l,setwidth){
  80. this.ct=t; this.cr=r; this.cb=b; this.cl=l
  81. if(bw.ns4){
  82. this.css.clip.top=t;this.css.clip.right=r
  83. this.css.clip.bottom=b;this.css.clip.left=l
  84. }else{
  85. if(t<0)t=0;if(r<0)r=0;if(b<0)b=0;if(b<0)b=0
  86. this.css.clip="rect("+t+"px "+r+"px "+b+"px "+l+"px)";
  87. if (setwidth){
  88. this.css.pixelWidth = r;
  89. this.css.pixelHeight = b;
  90. this.css.width = r+px;
  91. this.css.height = b+px;
  92. }
  93. }
  94. }
  95. var oLoad2
  96. function startLoading(){
  97. page = new lib_doc_size()
  98. oLoadCont = new lib_obj('divLoadCont')
  99. oLoad = new lib_obj('divLoad1','divLoadCont')
  100. oLoad2 = new lib_obj('divLoad2','divLoadCont.document.divLoad1')
  101. oLoadText = new lib_obj('divLoadText','divLoadCont.document.divLoad1')
  102. oLoad.moveIt(page.x50-loaderWidth/2,page.y50-20)
  103. oLoadText.moveIt(loaderWidth/2 - oLoadText.w/2,10)
  104. oLoad.clipTo(0,loaderWidth,40,0,1)
  105. oLoad2.per = loaderWidth/numImages
  106. }
  107. function loadIt(ok){
  108. currentImg ++
  109. if (oLoad2) oLoad2.clipTo(0,oLoad2.per*currentImg,40,0,1)
  110. if (!ok){
  111. oLoadCont.css.visibility = "hidden"
  112. oLoadCont = null;
  113. oLoad1 = null;
  114. oLoad2 = null;
  115. }
  116. }
  117. //DISPLAY FUNCTION - DELETE START -------- DELETE THIS *************
  118. //LEAVE THIS FUNCTION WHILE TESTING. DELETE WHEN READY
  119. function loadIt_display(ok){
  120. currentImg ++
  121. if (oLoad2) oLoad2.clipTo(0,oLoad2.per*currentImg,40,0,1)
  122. if (currentImg<=numImages) setTimeout("loadIt_display(1)",200)
  123. else{
  124. oLoadCont.css.visibility = "hidden"
  125. }
  126. }
  127. //DISPLAY FUNCTION - DELETE END *************************************
  128. </script>
  129. <!-- HEAD END HERE -->
  130. </head>
  131. <body bgcolor="#737994" text="#FFFFFF" link="#FFFFFF" topmargin="0" leftmargin="0">
  132. <!-- BODY START HERE -->
  133. <!-- ALWAYS HAVE THIS RIGHT AFTER THE BODY START TAG -->
  134. <div id="divLoadCont">
  135. <div id="divLoad1">
  136. <div id="divLoad2"></div><br>
  137. <div id="divLoadText">Загрузка...</div>
  138. </div>
  139. </div>
  140. <script>
  141. startLoading()
  142. //onload=loadIt; //- LEAVE THIS LINE WHILE TESTING. UNCOMMENT WHEN READY
  143. loadIt_display(1) //LEAVE THIS LINE WHILE TESTING. DELETE WHEN READY
  144. </script>
  145. <!-- BODY END HERE -->
  146. <br><br><br>
  147. <center>
  148. SOFTPURGEN
  149. <br><br>
  150. </center>
  151. </body>
  152. </html>

0
105
Human @Human
Меню сбоку
  1. <HTML>
  2. <body bgcolor="#FFFFFF" marginwidth="0" marginheight="0">
  3. <!--***** Paste the following two lines directly below the body tag ************************-->
  4. <script language="JavaScript1.2" src="sample1_data.js"></script>
  5. <script language="JavaScript1.2" src="cs_script.js"></script>
  6. <br>
  7. <br>
  8. <!--***** Position your image map and rollovers by pasting the following line anywhere within your HTML page **-->
  9. <script language="JavaScript1.2" src="cs_map.js"></script>
  10. <!--***** Position your content area by pasting the following line anywhere within your HTML page **-->
  11. <script language="JavaScript1.2" src="cs_content.js"></script>
  12. </body>
  13. </HTML>

0
105
Human @Human
Навигация при помощи клавиатуры










Данный скрипт реализует навигацию посредством клавиш (надписи выделенные зеленым необходимо откорректировать).

  1. <script language="JavaScript">
  2. <!--
  3. var key = new Array();
  4. key['a'] = "index.htm";
  5. key['b'] = "index1.htm";
  6. key['c'] = "index2.htm";
  7. key['d'] = "index3.htm";
  8. function getKey(keyStroke) {
  9. isNetscape=(document.layers);
  10. eventChooser = (isNetscape) ? keyStroke.which : event.keyCode;
  11. which = String.fromCharCode(eventChooser).toLowerCase();
  12. for (var i in key) if (which == i) window.location = key[i];}
  13. document.onkeypress = getKey;
  14. //-->
  15. </script>

.
Нажмите z для перехода на предыдущую страницу.
Нажмите x для перехода на следущую страницу.
Нажмите s для перехода на содержание.

0
105
Human @Human
3D Надпись
  1. <head>
  2. <script>
  3. <!--
  4. // Edit your messages. You MUST use 6 messages precisly.
  5. var message = new Array()
  6. message[0]=" >> Надпись 1"
  7. message[1]=" >> Надпись 2"
  8. message[2]=" >> Надпись 3"
  9. message[3]=" >> Надпись 4"
  10. message[4]=" >> Они вращаються!"
  11. message[5]=" >> 6 надписей"
  12. // Edit the width an height of your TextWheel (pixels)
  13. var scrollerheight=120
  14. var scrollerwidth=360
  15. // Edit the font
  16. var font_family="Verdana"
  17. // Edit the font-size
  18. var font_size=20
  19. // Edit the horizontal and vertical position of your TextWheel (pixels)
  20. var x_textposition=10
  21. var y_textposition=10
  22. function initiate() {
  23. if (document.all) {
  24. document.all.rotationstyle1.style.posLeft=x_textposition
  25. document.all.rotationstyle1.style.posTop=y_textposition
  26. document.all.rotationstyle2.style.posLeft=x_textposition
  27. document.all.rotationstyle2.style.posTop=y_textposition
  28. document.all.rotationstyle3.style.posLeft=x_textposition
  29. document.all.rotationstyle3.style.posTop=y_textposition
  30. document.all.rotationstyle4.style.posLeft=x_textposition
  31. document.all.rotationstyle4.style.posTop=y_textposition
  32. document.all.rotationstyle5.style.posLeft=x_textposition
  33. document.all.rotationstyle5.style.posTop=y_textposition
  34. document.all.rotationstyle6.style.posLeft=x_textposition
  35. document.all.rotationstyle6.style.posTop=y_textposition
  36. setmessages()
  37. }
  38. }
  39. function setmessages() {
  40. rotationstyle1.innerHTML=
  41. '<OBJECT ID="rotationobj1" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6" STYLE="position:relative;width:'+scrollerwidth+'px;height:'+2*scrollerheight+'px">'+
  42. '<PARAM NAME="Line0001" VALUE="SetLineStyle(0)">'+
  43. '<PARAM NAME="Line0002" VALUE="SetLineColor(0,0,0)">'+
  44. '<PARAM NAME="Line0003" VALUE="SetFillColor(255,255,0)">'+
  45. '<PARAM NAME="Line0004" VALUE="SetFont(\''+font_family+'\', '+font_size+', 400, 0, 0, 0)">'+
  46. '<PARAM NAME="Line0005" VALUE="Text(\''+message[0]+'\',0, 2, 0)">'+
  47. '</OBJECT>'
  48. rotationstyle2.innerHTML=
  49. '<OBJECT ID="rotationobj2" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6" STYLE="position:relative;width:'+scrollerwidth+'px;height:'+2*scrollerheight+'px">'+
  50. '<PARAM NAME="Line0001" VALUE="SetLineStyle(0)">'+
  51. '<PARAM NAME="Line0002" VALUE="SetLineColor(0,0,0)">'+
  52. '<PARAM NAME="Line0003" VALUE="SetFillColor(255,255,0)">'+
  53. '<PARAM NAME="Line0004" VALUE="SetFont(\''+font_family+'\', '+font_size+', 400, 0, 0, 0)">'+
  54. '<PARAM NAME="Line0005" VALUE="Text(\''+message[1]+'\',0, 2, 0)">'+
  55. '</OBJECT>'
  56. rotationstyle3.innerHTML=
  57. '<OBJECT ID="rotationobj3" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6" STYLE="position:relative;width:'+scrollerwidth+'px;height:'+2*scrollerheight+'px">'+
  58. '<PARAM NAME="Line0001" VALUE="SetLineStyle(0)">'+
  59. '<PARAM NAME="Line0002" VALUE="SetLineColor(0,0,0)">'+
  60. '<PARAM NAME="Line0003" VALUE="SetFillColor(255,255,0)">'+
  61. '<PARAM NAME="Line0004" VALUE="SetFont(\''+font_family+'\', '+font_size+', 400, 0, 0, 0)">'+
  62. '<PARAM NAME="Line0005" VALUE="Text(\''+message[2]+'\',0, 2, 0)">'+
  63. '</OBJECT>'
  64. rotationstyle4.innerHTML=
  65. '<OBJECT ID="rotationobj4" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6" STYLE="position:relative;width:'+scrollerwidth+'px;height:'+2*scrollerheight+'px">'+
  66. '<PARAM NAME="Line0001" VALUE="SetLineStyle(0)">'+
  67. '<PARAM NAME="Line0002" VALUE="SetLineColor(0,0,0)">'+
  68. '<PARAM NAME="Line0003" VALUE="SetFillColor(255,255,0)">'+
  69. '<PARAM NAME="Line0004" VALUE="SetFont(\''+font_family+'\', '+font_size+', 400, 0, 0, 0)">'+
  70. '<PARAM NAME="Line0005" VALUE="Text(\''+message[3]+'\',0, 2, 0)">'+
  71. '</OBJECT>'
  72. rotationstyle5.innerHTML=
  73. '<OBJECT ID="rotationobj5" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6" STYLE="position:relative;width:'+scrollerwidth+'px;height:'+2*scrollerheight+'px">'+
  74. '<PARAM NAME="Line0001" VALUE="SetLineStyle(0)">'+
  75. '<PARAM NAME="Line0002" VALUE="SetLineColor(0,0,0)">'+
  76. '<PARAM NAME="Line0003" VALUE="SetFillColor(255,255,0)">'+
  77. '<PARAM NAME="Line0004" VALUE="SetFont(\''+font_family+'\', '+font_size+', 400, 0, 0, 0)">'+
  78. '<PARAM NAME="Line0005" VALUE="Text(\''+message[4]+'\',0, 2, 0)">'+
  79. '</OBJECT>'
  80. rotationstyle6.innerHTML=
  81. '<OBJECT ID="rotationobj6" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6" STYLE="position:relative;width:'+scrollerwidth+'px;height:'+2*scrollerheight+'px">'+
  82. '<PARAM NAME="Line0001" VALUE="SetLineStyle(0)">'+
  83. '<PARAM NAME="Line0002" VALUE="SetLineColor(0,0,0)">'+
  84. '<PARAM NAME="Line0003" VALUE="SetFillColor(255,255,0)">'+
  85. '<PARAM NAME="Line0004" VALUE="SetFont(\''+font_family+'\', '+font_size+', 400, 0, 0, 0)">'+
  86. '<PARAM NAME="Line0005" VALUE="Text(\''+message[5]+'\',0, 2, 0)">'+
  87. '</OBJECT>'
  88. rotationobj1.Rotate(0,0,0)
  89. rotationobj2.Rotate(0,60,0)
  90. rotationobj3.Rotate(0,120,0)
  91. rotationobj4.Rotate(0,180,0)
  92. rotationobj5.Rotate(0,240,0)
  93. rotationobj6.Rotate(0,300,0)
  94. startscroll()
  95. }
  96. function startscroll() {
  97. rotationobj1.Rotate(1,2,0)
  98. rotationobj2.Rotate(1,2,0)
  99. rotationobj3.Rotate(1,2,0)
  100. rotationobj4.Rotate(1,2,0)
  101. rotationobj5.Rotate(1,2,0)
  102. rotationobj6.Rotate(1,2,0)
  103. timer=setTimeout("startscroll()",20)
  104. }
  105. // - End of JavaScript - -->
  106. </script>
  107. </head>
  108. <body bgcolor = "Blue" onLoad="initiate()">
  109. <SPAN ID="rotationstyle1" STYLE="position:absolute">
  110. <OBJECT ID="rotationobj1" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6">
  111. </OBJECT>
  112. </SPAN>
  113. <SPAN ID="rotationstyle2" STYLE="position:absolute">
  114. <OBJECT ID="rotationobj2" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6">
  115. </OBJECT>
  116. </SPAN>
  117. <SPAN ID="rotationstyle3" STYLE="position:absolute">
  118. <OBJECT ID="rotationobj3" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6">
  119. </OBJECT>
  120. </SPAN>
  121. <SPAN ID="rotationstyle4" STYLE="position:absolute">
  122. <OBJECT ID="rotationobj4" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6">
  123. </OBJECT>
  124. </SPAN>
  125. <SPAN ID="rotationstyle5" STYLE="position:absolute">
  126. <OBJECT ID="rotationobj5" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6">
  127. </OBJECT>
  128. </SPAN>
  129. <SPAN ID="rotationstyle6" STYLE="position:absolute">
  130. <OBJECT ID="rotationobj6" CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6">
  131. </OBJECT>
  132. </SPAN>
  133. <DIV id="Belongs_not_to_the_script" style="position:absolute;top:200px;left:5px;">
  134. </DIV>
  135. </body>

0
105
Human @Human
Подсказка в стиле Windows
  1. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251">
  2. <style ID="AsstStyle">
  3. BODY{font: messagebox;}
  4. TD{font: messagebox;}
  5. .clickable {color:darkblue; cursor:hand}
  6. </style>
  7. <title>Подсказка в стиле Windows</title>
  8. </head>
  9. <body topmargin="4px" leftmargin="4px" SCROLL="yes">
  10. <table border="0" width="80%" cellpadding=0 cellspacing=0>
  11. <tr>
  12. <td ID=TipCell align="left" rowspan="2" width="34" valign="middle">
  13. <img ID=TipGif src="tips.gif" width="27" height="36" alt="tips.gif (1045 bytes)"> </td>
  14. <td ID=TipText width="90%" align="left"><strong>Знаете ли вы, что...</strong></td>
  15. <td ID="GoNext" align="right" width="66" rowspan="2" nowrap>
  16. <a href="javascript:goNext()" class="clickable" onmouseover="this.style.color='red'" onmouseout="this.style.color='darkblue'">Следующий совет</a>
  17. </tr>
  18. <tr>
  19. <td width="90%" align="left">
  20. <div ID="Tip0" Style="display:none;">
  21. Чтобы увеличить или уменьшить текст веб-страниц, в меню <b>Вид</b> выберите пункт <b>Размер шрифта</b>. Нажмите клавишу F5, чтобы обновить экран.</div>
  22. <div ID="Tip1" Style="display:none;">
  23. Чтобы быстро сохранить веб-страницу в списке избранного, нажмите CTRL+D.</div>
  24. <div ID="Tip2" Style="display:none;">
  25. Можно отправить веб-страницу по электронной почте, в меню <b>Файл</b> указав пункт <b>Отправить</b>, а затем выбрав пункт <b>Страницу по электронной почте</b>.</div>
  26. <div ID="Tip3" Style="display:none;">
  27. Из рисунков и фона веб получаются отличные фоновые рисунки для рабочего стола. Просто щелкните правой кнопкой мыши на нужном рисунке и выберите <b>Сделать рисунком рабочего стола</b>.</div>
  28. <div ID="Tip4" Style="display:none;">
  29. Для прокрутки документа к началу нажмите клавишу со стрелкой вверх.</div>
  30. <div ID="Tip5" Style="display:none;">
  31. Для прокрутки большого документа к началу нажмите клавишу PAGE UP.</div>
  32. <div ID="Tip6" Style="display:none;">
  33. Чтобы быстро вернуться к предыдущим страницам, можно щелкнуть маленькую стрелку вниз справа от кнопки <b>Назад</b>.</div>
  34. <div ID="Tip7" Style="display:none;">
  35. Чтобы задать объем места на диске, занимаемого временными файлами Интернета, в меню <b>Сервис</b> выберите пункт <b>Свойства обозревателя</b>, а затем выберите <b>Настройка</b>.</div>
  36. <div ID="Tip8" Style="display:none;">
  37. Можно убедиться, что просматриваемая веб-страница содержит самую свежую информацию, нажав клавишу F5, чтобы обновить ее.</div>
  38. <div ID="Tip9" Style="display:none;">
  39. Internet Explorer помогает экономить время и усилия, заканчивая ввод часто вводимых адресов URL.</div>
  40. <div ID="Tip10" Style="display:none;">
  41. Чтобы перейти на один кадр вперед, нажмите клавиши CTRL+TAB.</div>
  42. <div ID="Tip11" Style="display:none;">
  43. Чтобы перейти на один кадр назад, нажмите клавиши SHIFT+CTRL+TAB.</div>
  44. <div ID="Tip12" Style="display:none;">
  45. Можно ввести слово в адресной строке и нажать клавиши CTRL+ENTER, чтобы автоматически добавить ********** и .com с любой стороны от введенного слова.</div>
  46. <div ID="Tip13" Style="display:none;">
  47. Если в качестве программы электронной почты используется Microsoft Outlook или Outlook Express, можно перетащить ярлык Интернета в сообщение электронной почты.</div>
  48. <div ID="Tip14" Style="display:none;">
  49. Можно перестроить список избранного или меню с помощью перетаскивания.</div>
  50. <div ID="Tip15" Style="display:none;">
  51. Чтобы напечатать текущую страницу или активный кадр, нажмите CTRL+P.</div>
  52. <div ID="Tip16" Style="display:none;">
  53. Чтобы узнать, какие действия можно выполнить с избранной ссылкой, щелкните правой кнопкой мыши ссылку в меню "Избранное".</div>
  54. <div ID="Tip17" Style="display:none;">
  55. Чтобы напечатать документ, можно перетащить ярлык Интернета на значок принтера на рабочем столе.</div>
  56. <div ID="Tip18" Style="display:none;">
  57. Можно обеспечить вызов наиболее часто посещаемых веб-страниц одним щелчком мыши, перетащив ярлык этих страниц на панель ссылок.</div>
  58. <div ID="Tip19" Style="display:none;">
  59. Для прокрутки к концу документа нажмите клавишу со стрелкой вниз.</div>
  60. </td></tr>
  61. </table>
  62. <p><br class="userData" id="myData">
  63. <script LANGUAGE="JavaScript" FOR="window" EVENT="onload">
  64. Load();
  65. </script><script>
  66. var i=0;
  67. var nTips=20;
  68. function Load() {
  69. var d = new Date();
  70. i = ((d.getMonth() * 31) + d.getDate()) %nTips;
  71. if (i==null) i=0;
  72. eval("document.all.Tip"+i+".style.display=''");
  73. }
  74. function goNext()
  75. {
  76. eval("document.all.Tip"+i+".style.display='none'");
  77. i=(((i%nTips)+1)%nTips);
  78. eval("document.all.Tip"+i+".style.display=''");
  79. }
  80. </script>

0
105
Human @Human
Поиск на 16 поисковых системах
  1. <FORM action=http://adclick.ru/search.php method=post
  2. target=new>
  3. <TABLE id=table1 cellPadding=0 border=0>
  4. <TBODY>
  5. <TR>
  6. <TD colSpan=3><INPUT size=25 name=text></TD></TR>
  7. <TR>
  8. <TD vAlign=top><SELECT size=1 name=search> <OPTION
  9. value=3 selected>Rambler</OPTION> <OPTION
  10. value=4>Yandex</OPTION> <OPTION
  11. value=7>Fair.ru</OPTION> <OPTION
  12. value=1>Google</OPTION> <OPTION value=9>Lupa</OPTION>
  13. <OPTION value=10>Km</OPTION> <OPTION
  14. value=2>Altavista</OPTION> <OPTION
  15. value=5>Lycos</OPTION> <OPTION value=6>Aport</OPTION>
  16. <OPTION value=8>Refer</OPTION> <OPTION
  17. value=12>Yahoo</OPTION> <OPTION value=13>MSN</OPTION>
  18. <OPTION value=14>Excite</OPTION> <OPTION
  19. value=15>Alltheweb</OPTION> <OPTION
  20. value=16>WebCrawler</OPTION> <OPTION value=17>AOL
  21. NetFind</OPTION></SELECT></TD>
  22. <TD vAlign=top><INPUT style="FONT-SIZE: 9pt" type=submit value=Поиск name=submit></TD>
  23. <TD vAlign=center
  24. align=right>&nbsp;</TD></TR></TBODY></TABLE></FORM>

0
105
Human @Human
Перемещающиеся слова, одно скользит горизонтально, два другие скользят и постояно находятся в противофазах, одно опускается другое поднимается
  1. <script language="JavaScript">
  2. <!--
  3. var rad = 50;
  4. var xoff = 170;
  5. var yoff = 180;
  6. var pi = Math.PI;
  7. var inc = pi / 36;
  8. var pos=0;
  9. var xinc=3
  10. function move() {
  11. pos += inc;
  12. xoff+=xinc;
  13. if (xoff>=580) {xinc=-3}
  14. if (xoff<=170) {xinc=3}
  15. obj1.left = xoff+4;
  16. obj1.top = (rad* Math.sin(pos)) + yoff;
  17. obj2.left = xoff+27;
  18. obj2.top = -(rad * Math.sin(pos)) + yoff;
  19. obj3.left = xoff;
  20. obj3.top = yoff;
  21. setTimeout("move()", 30);
  22. }
  23. -->
  24. </script>
  25. </head>
  26. <body>
  27. <div id="obj2" style="z-index:8;position:absolute; width:70px; height:31px"><font face="Arial" size="3" color="#DC5912"><b>Сборник</b></font></div>
  28. <div id="obj1" style="z-index:4;position:absolute;width:70px; height:31px"><font face="Arial" size="3" color="#9B4E00"><b>WWW.SOFTPURGEN.NAROD.RU</b></font></div>
  29. <div id="obj3" style="z-index:6;position:absolute;width:89px; height:18px;clip:rect(0px 89px 18px 0px); background-color:#800000; layer-background-color:#8000FF;"><font face="Arial" size="3" color="Yellow"><b><center>JavaScripts</center></b></font></div>
  30. <script language="JavaScript">
  31. <!--
  32. var NN = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 4);
  33. var obj1 = (NN) ? document.obj1 : document.all.obj1.style;
  34. var obj2 = (NN) ? document.obj2 : document.all.obj2.style;
  35. var obj3 = (NN) ? document.obj3 : document.all.obj3.style;
  36. move();
  37. -->
  38. </script>

0
105
Human @Human
Российские и мировые новости
Данный скрипт размещает на Вашем сайте последние российские и мировый новости. При этом посетители Вашего ресурса никуда не уходят по ссылкам заголовков новостей. Все новости загружаются в новое окно.
Для того, что бы на Вашем сайте всегда были последние новости, просто всавьте в HTML-код своей страницы следующие строки:
----------------------------------------

  1. [color=blue]<script language="JavaScript" src="http://www.tezis.ru/news/tezis_news.js">
  2. </script>
  3. <script>
  4. <!-- tezis_news(10); //-->
  5. </script>[/color]

Во фрагменте "tezis_news(10)" приведенного кода в скобках указано количество выводимых новостей. Можете установить значение этого параметра от 1 до 10.

Для того что бы страницы с новостями не кэшировались браузером вставьте в заголовок страницы следующие строки:

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">

0
105
Human @Human
Cалют при наведении на ссылку
  1. <html>
  2. <head>
  3. <title>Салют при наведении на ссылку</title>
  4. <script>
  5. <!--
  6. var debrisnumber=40
  7. var debriscolor=new Array()
  8. debriscolor[0]="FFAAAA"
  9. debriscolor[1]="AA0000"
  10. debriscolor[2]="770000"
  11. debriscolor[3]="AA4444"
  12. debriscolor[4]="EE4422"
  13. var x_debrispos
  14. var y_debrispos
  15. var x,y
  16. var x_random=new Array()
  17. var y_random=new Array()
  18. var max_explsteps=20
  19. var i_explsteps=0
  20. var i_color=0
  21. var pause=10
  22. function checkbrowser() {
  23. i_explsteps=0
  24. x_debrispos=x
  25. y_debrispos=y
  26. for (i=0;i<=debrisnumber;i++) {
  27. x_random[i]=Math.ceil(40*Math.random())-20
  28. y_random[i]=Math.ceil(40*Math.random())-20
  29. }
  30. if (document.all) {
  31. for (i=0;i<=debrisnumber;i++) {
  32. var thisspan=eval("document.all.span"+i+".style")
  33. thisspan.visibility="VISIBLE"
  34. thisspan.posLeft=x_debrispos
  35. thisspan.posTop=y_debrispos
  36. }
  37. explode_IE()
  38. }
  39. if (document.layers) {
  40. for (i=0;i<=debrisnumber;i++) {
  41. var thisspan=eval("document.span"+i)
  42. thisspan.visibility="VISIBLE"
  43. thisspan.left=x_debrispos
  44. thisspan.top=y_debrispos }
  45. explode_NN()
  46. } }
  47. function explode_IE() {
  48. if (i_explsteps<=max_explsteps) {
  49. for (i=0;i<=debrisnumber;i++) {
  50. var thisspan=eval("document.all.span"+i+".style")
  51. thisspan.posLeft+=x_random[i]
  52. thisspan.posTop+=y_random[i]
  53. }
  54. i_explsteps++
  55. var timer=setTimeout("explode_IE()",pause)
  56. }
  57. else {
  58. for (i=0;i<=debrisnumber;i++) {
  59. var thisspan=eval("document.all.span"+i+".style")
  60. thisspan.visibility="HIDDEN"
  61. }
  62. clearTimeout(timer)
  63. }
  64. }
  65. function explode_NN() {
  66. if (i_explsteps<=max_explsteps) {
  67. for (i=0;i<=debrisnumber;i++) {
  68. var thisspan=eval("document.span"+i)
  69. thisspan.left+=x_random[i]
  70. thisspan.top+=y_random[i]
  71. }
  72. i_explsteps++
  73. var timer=setTimeout("explode_NN()",pause)
  74. }
  75. else {
  76. for (i=0;i<=debrisnumber;i++) {
  77. var thisspan=eval("document.span"+i)
  78. thisspan.visibility="HIDDEN"
  79. }
  80. clearTimeout(timer)
  81. }
  82. }
  83. function handlerMM(e){
  84. x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX
  85. y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY
  86. }
  87. if (document.layers){
  88. document.captureEvents(Event.MOUSEMOVE);
  89. }
  90. document.onmousemove = handlerMM;
  91. // - End of JavaScript - -->
  92. </script>
  93. <style>
  94. .spanstyle { position:absolute; visibility:hidden;}
  95. </style>
  96. </head>
  97. <body>
  98. <script>
  99. <!-- Beginning of JavaScript -
  100. for (i=0;i<=debrisnumber;i++) {
  101. document.write("<div id='span"+i+"' class='spanstyle'>")
  102. document.write("<table cellpadding=0 cellspacing=0>")
  103. document.write("<tr><td bgcolor="+debriscolor[i_color]+">")
  104. document.write("<img src='emptypixel236.gif' width=3>")
  105. document.write("</td></tr></table>")
  106. document.write("</div>")
  107. i_color++
  108. if (i_color>=debriscolor.length) {i_color=0}
  109. }
  110. // - End of JavaScript - -->
  111. </script>
  112. <DIV id="redir" style="position:absolute; top:10px;
  113. left:5px; visibility:visible;">
  114. <div align="center"><a href="http://scriptic.ru"
  115. onMouseOver="checkbrowser()"> Подведите мышь к ссылке</a></div>
  116. </DIV>
  117. </body>
  118. </html>

0
105
Human @Human
Сделать страницу стартовой
  1. title>JavaScript. Установление страницы стартовой</title>
  2. </head>
  3. <body>
  4. <a href="#" onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.mpchat.ru/'); return false;">Сделать стартовой</a>

0
105
Human @Human
Сообщение в зависимости от дня недели
  1. <html>
  2. <head>
  3. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251">
  4. </head>
  5. <body>
  6. <B><FONT SIZE=4><CENTER>
  7. <Script Language="JavaScript">
  8. now = new Date()
  9. if (now.getDay() == 0)
  10. document.write("Отдыхайте, завтра рабочий день...")
  11. if (now.getDay() == 1)
  12. document.write("Сегодня понедельник - настраивайтесь на работу")
  13. if (now.getDay() == 2)
  14. document.write("Уже вторник, понедельник к счастью позади!")
  15. if (now.getDay() == 3)
  16. document.write("Половина недели позади - сегодня уже среда")
  17. if (now.getDay() == 4)
  18. document.write("Сегодня четверг, скоро выходные...")
  19. if (now.getDay() == 5)
  20. document.write("Сегодня пятница - последний рабочий день")
  21. if (now.getDay() == 6)
  22. document.write("Сегодня первый день выходных!")
  23. </Script>
  24. </B></FONT>
  25. </body>
  26. </html>

0
105
Human @Human
Текст РАДУГА
  1. <b>
  2. <font size="5">
  3. <script>
  4. var text="Сборник JavaScripts"
  5. var speed=80
  6. if (document.all||document.getElementById){
  7. document.write('<span id="highlight">' + text + '</span>')
  8. var storetext=document.getElementById? document.getElementById("highlight") : document.all.highlight
  9. }
  10. else
  11. document.write(text)
  12. var hex=new Array("00","14","28","3C","50","64","78","8C","A0","B4","C8","DC","F0")
  13. var r=1
  14. var g=1
  15. var b=1
  16. var seq=1
  17. function changetext(){
  18. rainbow="#"+hex[r]+hex[g]+hex[b]
  19. storetext.style.color=rainbow
  20. }
  21. function change(){
  22. if (seq==6){
  23. b--
  24. if (b==0)
  25. seq=1
  26. }
  27. if (seq==5){
  28. r++
  29. if (r==12)
  30. seq=6
  31. }
  32. if (seq==4){
  33. g--
  34. if (g==0)
  35. seq=5
  36. }
  37. if (seq==3){
  38. b++
  39. if (b==12)
  40. seq=4
  41. }
  42. if (seq==2){
  43. r--
  44. if (r==0)
  45. seq=3
  46. }
  47. if (seq==1){
  48. g++
  49. if (g==12)
  50. seq=2
  51. }
  52. changetext()
  53. }
  54. function starteffect(){
  55. if (document.all||document.getElementById)
  56. flash=setInterval("change()",speed)
  57. }
  58. starteffect()
  59. </script>

0
105
Human @Human
Текст увеличивается и уменьшается
  1. <script language="JavaScript">
  2. <!-- Begin
  3. // Original: Charles Foster (wcms_sf@msn.com)
  4. // Web Site: **********
  5. // This script and many more are available free online at
  6. // The JavaScript Source!! **********
  7. var speed = 100;
  8. var cycledelay = 2000;
  9. var maxsize = 28;
  10. var x = 0;
  11. var y = 0;
  12. var themessage, size;
  13. var esize = "</font>";
  14. function initArray() {
  15. this.length = initArray.arguments.length;
  16. for (var i = 0; i < this.length; i++) {
  17. this[i] = initArray.arguments[i];
  18. }
  19. }
  20. var themessage2 = new initArray(
  21. "Сборник JavaScripts",
  22. "Можете скачать на www.mpchat.ru",
  23. "Сборник разработал Human"
  24. );
  25. if(navigator.appName == "Netscape")
  26. document.write('<layer id="wds"></layer><br>');
  27. if (navigator.appVersion.indexOf("MSIE") != -1)
  28. document.write('<span id="wds"></span><br>');
  29. function upwords(){
  30. themessage = themessage2[y];
  31. if (x < maxsize) {
  32. x++;
  33. setTimeout("upwords()",speed);
  34. }
  35. else setTimeout("downwords()",cycledelay);
  36. if(navigator.appName == "Netscape") {
  37. size = "<font point-size='"+x+"pt'>";
  38. document.wds.document.write(size+"<center>"+themessage+"</center>"+esize);
  39. document.wds.document.close();
  40. }
  41. if (navigator.appVersion.indexOf("MSIE") != -1){
  42. wds.innerHTML = "<center>"+themessage+"</center>";
  43. wds.style.fontSize=x+'px';
  44. }
  45. }
  46. function downwords(){
  47. if (x > 1) {
  48. x--;
  49. setTimeout("downwords()",speed);
  50. }
  51. else {
  52. setTimeout("upwords()",cycledelay);
  53. y++;
  54. if (y > themessage2.length - 1) y = 0;
  55. }
  56. if(navigator.appName == "Netscape") {
  57. size = "<font point-size='"+x+"pt'>";
  58. document.wds.document.write(size+"<center>"+themessage+"</center>"+esize);
  59. document.wds.document.close();
  60. }
  61. if (navigator.appVersion.indexOf("MSIE") != -1){
  62. wds.innerHTML = "<center>"+themessage+"</center>";
  63. wds.style.fontSize=x+'px';
  64. }
  65. }
  66. setTimeout("upwords()",speed);
  67. // End -->
  68. </script>

0
105
Human @Human
Текст из одного цвета переливается в другой
  1. <script language=javascript>
  2. var message="Сборник JavaScripts на WWW.MPCHAT.RU"
  3. var neonbasecolor="#000000" //Начальный цвет
  4. var neontextcolor="#ff0000" //Конечный цвет
  5. var flashspeed=20 //Скорость, чем больше - тем медленнее
  6. var n=0
  7. if (document.all){
  8. document.write('<font color="'+neonbasecolor+'">')
  9. for (m=0;m<message.length;m++)
  10. document.write('<span id="neonlight">'+message.charAt(m)+'</span>')
  11. document.write('</font>')
  12. var tempref=document.all.neonlight
  13. }
  14. else
  15. document.write(message)
  16. function neon(){
  17. if (n==0){
  18. for (m=0;m<message.length;m++)
  19. tempref[m].style.color=neonbasecolor
  20. }
  21. tempref[n].style.color=neontextcolor
  22. if (n<tempref.length-1)
  23. n++
  24. else{
  25. n=0
  26. clearInterval(flashing)
  27. setTimeout("beginneon()",3000)
  28. return
  29. }
  30. }
  31. function beginneon(){
  32. if (document.all)
  33. flashing=setInterval("neon()",flashspeed)
  34. }
  35. beginneon()
  36. </script>

Отредактировано Human - 09.10.2007
0
105
Human @Human
Уничтожитель фреймов
Этот скрипт предназначен для страниц с фрэймами. Представьте себе такую картину: странник сети долго искал в поисковых машинах нужную ему информацию и попал на одну из ваших страниц которая должна быть во фрейме. Он посмотрит эту страницу и нажмет кнопку «Back» и навсегда забудет о вашем сайте. Так вот, этот скрипт предназначен для того, чтобы пользователь не ушел бесследно, а зашел на главную страницу сайта и увидел что на нем еще есть. Скрипт при открытии страницы на которой он размещен на весь экран выдаст текст (надписи выделенные зеленым необходимо откорректировать).

  1. <script language="JavaScript">
  2. <!--
  3. if (self.parent.frames.length == 0)
  4. document.writeln("Лучше смотреть с <a href=\"index.htm\">управлющим фреймом</a>");
  5. //-->
  6. </script>

А этот скрипт прямо пересылает на заглавную страницу без всяких вопросов.

  1. <script language="JavaScript">
  2. <!--
  3. if (self.parent.frames.length == 0)
  4. self.parent.location="index.htm";
  5. //-->
  6. </script>

0





Согласие на обработку данных на нашем сайте

Продолжая просматривать страницу, вы соглашаетесь с использованием файлов «Cookie» и с Политикой конфиденциальности «Privacy».
Наверху или внизу страницы вы можете изменить валюту и язык по умолчанию. Английская версия сайта ещё находится в доработке и доступна не полностью.