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

JavaScript - Скрипты

 

161
band-girl @band-girl
Фон с падующими сердечками:
  1. <script LANGUAGE="JavaScript">
  2. <!-- Begin
  3. var no = 12; // number of hearts
  4. var speed = 10; // smaller number moves the hearts faster
  5. var heart = "../gif/heart.gif";
  6. var flag;
  7. var ns4up = (document.layers) ? 1 : 0; &nbsp;// browser sniffer
  8. var ie4up = (document.all) ? 1 : 0;
  9. var dx, xp, yp; &nbsp; &nbsp;// coordinate and position variables
  10. var am, stx, sty; &nbsp;// amplitude and step variables
  11. var i, doc_width = 800, doc_height = 600;
  12. if (ns4up) {
  13. doc_width = self.innerWidth;
  14. doc_height = self.innerHeight;
  15. } else if (ie4up) {
  16. doc_width = document.body.clientWidth;
  17. doc_height = document.body.clientHeight;
  18. }
  19. dx = new Array();
  20. xp = new Array();
  21. yp = new Array();
  22. amx = new Array();
  23. amy = new Array();
  24. stx = new Array();
  25. sty = new Array();
  26. flag = new Array();
  27. for (i = 0; i < no; ++ i) {
  28. dx[i] = 0; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// set coordinate variables
  29. xp[i] = Math.random()*(doc_width-30)+10; &nbsp;// set position variables
  30. yp[i] = Math.random()*doc_height;
  31. amy[i] = 12+ Math.random()*20; &nbsp; &nbsp; &nbsp; &nbsp; // set amplitude variables
  32. amx[i] = 10+ Math.random()*40;
  33. stx[i] = 0.02 + Math.random()/10; // set step variables
  34. sty[i] = 0.7 + Math.random(); &nbsp; &nbsp; // set step variables
  35. flag[i] = (Math.random()>0.5)?1:0;
  36. if (ns4up) { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// set layers
  37. if (i == 0) {
  38. document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
  39. document.write("top=\"15\" visibility=\"show\"><img src=\"");
  40. document.write(heart+ "\" border=\"0\"></layer>");
  41. } else {
  42. document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
  43. document.write("top=\"15\" visibility=\"show\"><img src=\"");
  44. document.write(heart+ "\" border=\"0\"></layer>");
  45. }
  46. } else
  47. if (ie4up) {
  48. if (i == 0) {
  49. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
  50. document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
  51. document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
  52. document.write(heart+ "\" border=\"0\"></div>");
  53. } else {
  54. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
  55. document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
  56. document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
  57. document.write(heart+ "\" border=\"0\"></div>");
  58. }
  59. }
  60. }
  61. function snowNS() { &nbsp;// Netscape main animation function
  62. for (i = 0; i < no; ++ i) { &nbsp;// iterate for every dot
  63. if (yp[i] > doc_height-50) {
  64. xp[i] = 10+ Math.random()*(doc_width-amx[i]-30);
  65. yp[i] = 0;
  66. flag[i]=(Math.random()<0.5)?1:0;
  67. stx[i] = 0.02 + Math.random()/10;
  68. sty[i] = 0.7 + Math.random();
  69. doc_width = self.innerWidth;
  70. doc_height = self.innerHeight;
  71. }
  72. if (flag[i])
  73. dx[i] += stx[i];
  74. else
  75. dx[i] -= stx[i];
  76. if (Math.abs(dx[i]) > Math.PI) {
  77. yp[i]+=Math.abs(amy[i]*dx[i]);
  78. xp[i]+=amx[i]*dx[i];
  79. dx[i]=0;
  80. flag[i]=!flag[i];
  81. }
  82. document.layers["dot"+i].top = yp[i] + amy[i]*(Math.abs(Math.sin(dx[i])+dx[i]));
  83. document.layers["dot"+i].left = xp[i] + amx[i]*dx[i];
  84. }
  85. setTimeout("snowNS()", speed);
  86. }
  87. function snowIE() { &nbsp;// IE main animation function
  88. for (i = 0; i < no; ++ i) { &nbsp;// iterate for every dot
  89. if (yp[i] > doc_height-50) {
  90. xp[i] = 10+ Math.random()*(doc_width-amx[i]-30);
  91. yp[i] = 0;
  92. stx[i] = 0.02 + Math.random()/10;
  93. sty[i] = 0.7 + Math.random();
  94. flag[i]=(Math.random()<0.5)?1:0;
  95. doc_width = document.body.clientWidth;
  96. doc_height = document.body.clientHeight;
  97. }
  98. if (flag[i])
  99. dx[i] += stx[i];
  100. else
  101. dx[i] -= stx[i];
  102. if (Math.abs(dx[i]) > Math.PI) {
  103. yp[i]+=Math.abs(amy[i]*dx[i]);
  104. xp[i]+=amx[i]*dx[i];
  105. dx[i]=0;
  106. flag[i]=!flag[i];
  107. }
  108. document.all["dot"+i].style.pixelTop = yp[i] + amy[i]*(Math.abs(Math.sin(dx[i])+dx[i]));
  109. document.all["dot"+i].style.pixelLeft = xp[i] + amx[i]*dx[i];
  110. }
  111. setTimeout("snowIE()", speed);
  112. }
  113. if (ns4up) {
  114. snowNS();
  115. } else if (ie4up) {
  116. snowIE();
  117. }
  118. // End -->
  119. </script>


Передвижение объяекта:
  1.  
  2. <html>
  3. <head>
  4. <title>JavaScript. Позиционирование.</title>
  5. <script language="JavaScript">
  6. <!--
  7. var hor=0;
  8. var ver=0;
  9. // step = величина шага в пикселях
  10. var step=50;
  11. function right () {
  12. move.left= hor+=step;
  13. }
  14. function left () {
  15. move.left = hor-=step;
  16. }
  17. function down () {
  18. move.top = ver+=step;
  19. }
  20. function up () {
  21. move.top = ver-=step;
  22. }
  23. function upright () {
  24. move.top = ver-=step;
  25. move.left = hor+=step;
  26. }
  27. function upleft () {
  28. move.top = ver-step;
  29. move.left = hor-step;
  30. }
  31. function downleft () {
  32. move.top = ver+=step;
  33. move.left= hor-=step;
  34. }
  35. function downright () {
  36. move.top = ver+=step;
  37. move.left = hor+=step;
  38. }
  39. function begin () {
  40. move.top = ver=0;
  41. move.left = hor=0;
  42. }
  43. -->
  44. </script>
  45. </head>
  46. <body background="bg1.jpg" bgproperties="fixed" style="background-repeat: no-repeat;r" &nbsp;text="#800000" link="#8000FF" alink="#DC5912" vlink="#9B4E00">
  47. <br><br><center><div id="move" style="position:relative; left:0px; top:0px; width:88px; height:31px"><img src="../gif/heart.gif" width="33" height="30" border="0"></div></center><br>
  48. <script language="JavaScript">
  49. <!--
  50. var NN = (navigator.appName == "Netscape");
  51. var move = (NN) ? document.move : document.all.move.style;
  52. -->
  53. </script>
  54. <form><center>
  55. <input type="button" value="Влево-Вверх" onclick="upleft();">
  56. <input type="button" value="Вверх" onclick="up();">
  57. <input type="button" value="Вправо-Вверх" onclick="upright();"><br>
  58. <input type="button" value="Влево" onclick="left();">
  59. <input type="button" value="Исходная позиция" onclick="begin();">
  60. <input type="button" value="Вправо" onclick="right();"><br>
  61. <input type="button" value="Влево-Вниз" onclick="downleft();">
  62. <input type="button" value="Вниз" onclick="down();">
  63. <input type="button" value="Вправо-Вниз" onclick="downright();">
  64. </center></form>
  65. </body>
  66. </html>


При каждой загрузки новая музыка:
  1. <html>
  2. <head>
  3. <title>Музыкальная шкатулка, при каждой загрузке новая музыка</title>
  4. </head>
  5. <body>
  6. <script>
  7. //<!--
  8. var midi = ""
  9. var txt = ""
  10. var nummidis = 5
  11. day = new Date()
  12. seed = day.getTime()
  13. ran = parseInt(((seed - (parseInt(seed/1000,10) * 1000))/10)/100*nummidis
  14. + 1,10)
  15. if (ran == (1))
  16. {midi=("herbst.mid");
  17. txt=("herbst.mid")}
  18. if (ran == (2))
  19. {midi=("baby.mid");
  20. txt=("baby.mid")}
  21. if (ran == (3))
  22. {midi=("gemeinde.mid");
  23. txt=("gemeinde.mid")}
  24. if (ran == (4))
  25. {midi=("ost.mid");
  26. txt=("ost.mid")}
  27. if (ran == (5))
  28. {midi=("shark.mid");
  29. txt=("shark.mid")}
  30. /*
  31. Для Netscape - отключено - надо ? уберите тег комментария..
  32. document.write('<center><embed src="' + midi + '" AUTOSTART=true HIDDEN=false VOLUME=100 WIDTH=200 Height=55 loop=false></embed><br><strong>Эта музыка "<font color="red" size=2><em>' + txt + '</em></font></font>"</strong></center>')
  33. */
  34. document.write('<center><bgsound src="' + midi + '" AUTOSTART=true loop=false></bgsound><strong>Эта музыка "<font color="red"><em>' + txt + '</em></font></font>"</strong></center>')
  35. //-->
  36. </SCRIPT>
  37. </body>
  38. </html>


Проверка правильного ввода илектроного адреса:
  1. <html>
  2. <head>
  3. <title>JavaScript в примерах</title>
  4. <script Language="JavaScript">
  5. <!-- //
  6. function showerror() {
  7. alert("Адрес электронной почты был введен неправильно.");
  8. }
  9. function checkmail()
  10. {
  11. txt=document.entermail.address.value;
  12. if (txt == "") {
  13. alert("Введите Адрес электронной почты.");
  14. return(false)
  15. }
  16. if (txt.indexOf(".") == -1) {
  17. alert("Нет символа\".\"");
  18. return(false)
  19. }
  20. dog = txt.indexOf("@");
  21. if (dog == -1) {
  22. alert("Нет символа\"@\".");
  23. return(false)
  24. }
  25. if ((dog < 1) || (dog > txt.length - 5)) {
  26. showerror();
  27. return(false)
  28. }
  29. if ((txt.charAt(dog - 1) == '.') || (txt.charAt(dog + 1) == '.')) {
  30. showerror();
  31. return(false)
  32. }
  33. }
  34. //-->
  35. </script>
  36. <body>
  37. <form method="POST" name="entermail" onSubmit="return checkmail()">
  38. <p><b><small>E-mail:</small></b><br>
  39. <input type="text" name="address" size="20"><br>
  40. <input type="submit" value="Check" name="B1"> * <input type="reset"
  41. value="Clear" name="B2"></p>
  42. </form>
  43. </body>
  44. </html>


Подпрыгивающие слово:
  1. <html>
  2. <head>
  3. <title>Подпрыгивающее слово</title>
  4. <script language="JavaScript">
  5. <!--
  6. var rad = 100;
  7. var xoff = 350;
  8. var yoff = 120;
  9. var pi = Math.PI;
  10. var inc = pi/40;
  11. var pos=0;
  12. function move() {
  13. pos += inc;
  14. if (pos>= pi ) {pos=0;}
  15. obj.left = xoff;
  16. obj.top = -(rad * Math.sin(pos)) + yoff; &nbsp;
  17. setTimeout("move()", 50);
  18. }
  19. -->
  20. </script>
  21. </head>
  22. <body background="bg1.jpg" bgproperties="fixed" style="background-repeat: no-repeat;r" &nbsp;text="#800000" link="#8000FF" alink="#DC5912" vlink="#9B4E00">
  23. <div id="obj" style="position:absolute; left:400px; top:10px; width:10px; height:31px"><font face="Arial" color="#00cc00"><strong>Прыг!</strong></font></div>
  24. <script language="JavaScript">
  25. <!-- &nbsp;
  26. var NN = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 4);
  27. var obj = (NN) ? document.obj : document.all.obj.style;
  28. move();
  29. -->
  30. </script>
  31. </body>
  32. </html>


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

0
215
Сатана @Сатана
Слово мигающие красным цветом
  1. <a name="1"></a><b>
  2. <center><font size="3"> &nbsp; <!-- BODY START HERE -->
  3. <span id="theText" style="width:100%; color: #Red">
  4. <b><font size="3"color="#000000">Само слово</font>
  5. </span>
  6. <script>
  7. <!--
  8. //âåëè÷èíà ñèÿíèÿ îò è äî
  9. var from = 10;
  10. var to = 30;
  11. //ñêîðñòü ñèÿíèÿ
  12. var delay = 98;
  13. //öâåò ñèÿíèÿ, èìÿ â rgb (ïðèìåð:'blue') èëè èìåíîâàííûé
  14. var glowColor = "Red";
  15. //íå ìåíÿòü!!!
  16. var i = to;
  17. var j = 0;
  18. textPulseDown();
  19. function textPulseUp()
  20. {
  21. if (!document.all)
  22. return
  23. if (i < to)
  24. {
  25. theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
  26. i++;
  27. theTimeout = setTimeout('textPulseUp()',delay);
  28. return 0;
  29. }
  30. if (i = to)
  31. {
  32. theTimeout = setTimeout('textPulseDown()',delay);
  33. return 0;
  34. }
  35. }
  36. function textPulseDown()
  37. {
  38. if (!document.all)
  39. return
  40. if (i > from)
  41. {
  42. theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
  43. i--;
  44. theTimeout = setTimeout('textPulseDown()',delay);
  45. return 0;
  46. }
  47. if (i = from)
  48. {
  49. theTimeout = setTimeout('textPulseUp()',delay);
  50. return 0;
  51. }
  52. }
  53. //-->
  54. </script>

0
161
band-girl @band-girl
Смена картинки при выборе картинки из списка (select)
  1. <script language="javascript">
  2. <!--// Image Selector
  3. function selectImage(f)
  4. {
  5. if (document.flipForm.which.selectedIndex >= 0)
  6. &nbsp;document.flipForm.flip.src = imageSet[document.flipForm.which.selectedIndex];
  7. }
  8. function SelectorLongNames(width,height,listHeight,images,names)
  9. {
  10. /* si: start index
  11. ** i: current index
  12. ** ei: end index
  13. ** cc: current count
  14. */
  15. si = 0;
  16. ci=0;
  17. cc=0;
  18. imageSet = new Array();
  19. ei = images.length;
  20. for (i=1;i<ei;i++) {
  21. if (images.charAt(i) == ' ' || images.charAt(i) == ',') {
  22. imageSet[cc] = images.substring(si,i);
  23. cc++;
  24. si=i+1; &nbsp; }
  25. }
  26. currentFlip = 0;
  27. si = 0;
  28. ci=0;
  29. cc=0;
  30. nameSet = new Array();
  31. ei = names.length;
  32. for (i=1;i<ei;i++) {
  33. if (names.charAt(i) == ',') {
  34. nameSet[cc] = names.substring(si,i);
  35. cc++;
  36. si=i+1;
  37. }
  38. }
  39. &nbsp;currentFlip = 0;
  40. &nbsp;// should check nameSet.length == imageSet.length
  41. &nbsp;document.writeln("<FORM name=flipForm>");
  42. &nbsp;document.writeln("<table border=0><tr><td>");
  43. &nbsp;document.write("<img name='flip'");
  44. &nbsp;if (width >0)
  45. &nbsp; &nbsp;document.write("width="+width);
  46. &nbsp;if (height >0)
  47. &nbsp; &nbsp;document.write(" height=" +height);
  48. &nbsp;document.writeln(" src=" +imageSet[0]+ ">");
  49. &nbsp;document.writeln("</td></tr><tr><td>");
  50. &nbsp;document.write("<Select");
  51. &nbsp;if (listHeight > 0)
  52. &nbsp; &nbsp;document.write(" size="+listHeight);
  53. &nbsp;document.write(" name='which' onChange='selectImage(this.form)'>");
  54. for (i=0;i<imageSet.length;i++)
  55. if (i<nameSet.length)
  56. document.write("<OPTION value="+i+">"+nameSet[i]);
  57. else
  58. document.write("<OPTION value="+i+">"+imageSet[i]);
  59. document.writeln("</SELECT>");
  60. document.writeln("</FORM>");
  61. document.writeln("</td></tr></table>");
  62. }
  63. function SelectorLong(width,height,listHeight,images){
  64. SelectorLongNames(width,height,listHeight,images,",");}
  65. function PullDownSelector(width,height,images){
  66. SelectorLongNames(width,height,-1,images,",")}
  67. function PullDownSelectorNames(width,height,images,names){
  68. SelectorLongNames(width,height,-1,images,names)}
  69. // use -1 -1 if you don't know the width and height for the image
  70. function Selector(width,height,images){
  71. listHeight=1; // размеры поля списка Select
  72. SelectorLong(width,height,listHeight,images);
  73. }
  74. // End Script -->
  75. </SCRIPT>
  76. </HEAD>
  77. <body bgcolor="000000" text="#00ff99" link="#00ff00" alink="#99ff00" vlink="#00cc00">
  78. <iframe src="../menu.htm" align="left" width="140" height="560" scrolling="no" frameborder="0"></iframe>
  79. <P>
  80. <script>
  81. <!--// длинна, ширина, адреса картинок.
  82. Selector(468,60,"../banner/gold468x60.gif ../banner/metal468x60.gif ../banner/metal-468x60.gif ");
  83. // &nbsp;-->
  84. </SCRIPT>
  85. :


Передвижение объекта,с выбором:
  1. <html>
  2. <head>
  3. <title>JavaScript. Позиционирование.</title>
  4. <script language="JavaScript">
  5. <!--
  6. var hor=0;
  7. var ver=0;
  8. // step = величина шага в пикселях
  9. var step=50;
  10. function right () {
  11. move.left= hor+=step;
  12. }
  13. function left () {
  14. move.left = hor-=step;
  15. }
  16. function down () {
  17. move.top = ver+=step;
  18. }
  19. function up () {
  20. move.top = ver-=step;
  21. }
  22. function upright () {
  23. move.top = ver-=step;
  24. move.left = hor+=step;
  25. }
  26. function upleft () {
  27. move.top = ver-step;
  28. move.left = hor-step;
  29. }
  30. function downleft () {
  31. move.top = ver+=step;
  32. move.left= hor-=step;
  33. }
  34. function downright () {
  35. move.top = ver+=step;
  36. move.left = hor+=step;
  37. }
  38. function begin () {
  39. move.top = ver=0;
  40. move.left = hor=0;
  41. }
  42. -->
  43. </script>
  44. </head>
  45. <body background="bg1.jpg" bgproperties="fixed" style="background-repeat: no-repeat;r" &nbsp;text="#800000" link="#8000FF" alink="#DC5912" vlink="#9B4E00">
  46. <br><br><center><div id="move" style="position:relative; left:0px; top:0px; width:88px; height:31px"><img src="../gif/heart.gif" width="33" height="30" border="0"></div></center><br>
  47. <script language="JavaScript">
  48. <!--
  49. var NN = (navigator.appName == "Netscape");
  50. var move = (NN) ? document.move : document.all.move.style;
  51. -->
  52. </script>
  53. <form><center>
  54. <input type="button" value="Влево-Вверх" onclick="upleft();">
  55. <input type="button" value="Вверх" onclick="up();">
  56. <input type="button" value="Вправо-Вверх" onclick="upright();"><br>
  57. <input type="button" value="Влево" onclick="left();">
  58. <input type="button" value="Исходная позиция" onclick="begin();">
  59. <input type="button" value="Вправо" onclick="right();"><br>
  60. <input type="button" value="Влево-Вниз" onclick="downleft();">
  61. <input type="button" value="Вниз" onclick="down();">
  62. <input type="button" value="Вправо-Вниз" onclick="downright();">
  63. </center></form>
  64. </body>
  65. </html>

0
215
Сатана @Сатана
Бегущий текст в рамка с возможностью выбора скорости!(очень красиво!)
  1. <html>
  2. <head>
  3. <title>WOweb.ru - Scripts - JavaScript - Ranning Messages</title>
  4. <META http-equiv="Content-Type" content="text/html; charset=windows-1251">
  5. <Style>
  6. &nbsp; A:Link{ Color: #000000; Text-decoration: underline}
  7. &nbsp; A:Visited{ Color: #000000; Text-decoration: underline}
  8. &nbsp; A:Hover{ Color: #000000; Text-decoration: none}
  9. td, body {font-family: verdana, arial, helvetica; font-size:11px;} &nbsp;
  10. </Style>
  11. <!-- HEAD START HERE -->
  12. <script LANGUAGE="JavaScript">
  13. <!--
  14. // Your messages. Add as many as you like
  15. var message=new Array()
  16. message[0]="ГЛАВНАЯ СТРАНИЦА: collections, tricks, tutorials, CLICK HERE."
  17. message[1]="ФОРУМ: спросите у автора, напишите свое мнение о сайте. CLICK HERE."
  18. message[2]="О СКРИПТЕ: можно использовать как меню, регулятор скорости прокрутки. CLICK HERE."
  19. // the URLs of your messages
  20. var messageurl=new Array()
  21. messageurl[0]="http://www.woweb.ru"
  22. messageurl[1]="http://www.woweb.ru"
  23. messageurl[2]="http://www.woweb.ru"
  24. // the targets of the links
  25. // accepted values are '_blank' or '_top' or '_parent' or '_self'
  26. // or the name of your target-window (for instance 'main')
  27. var messagetarget=new Array()
  28. messagetarget[0]="_blank"
  29. messagetarget[1]="_blank"
  30. messagetarget[2]="_blank"
  31. // font-color of messages
  32. var messagecolor= new Array()
  33. messagecolor[0]="yellow"
  34. messagecolor[1]="lightgreen"
  35. messagecolor[2]="orange"
  36. // font-color of the messagecounter just below the scroller
  37. textcountercolor="white"
  38. // font-size of the messagecounter just below the scroller
  39. textcountersize=7
  40. // distance of the scroller to the left margin of the browser-window (pixels)
  41. var scrollerleft=20
  42. // distance of the scroller to the top margin of the browser-window (pixels)
  43. var scrollertop=20
  44. // speed 1: lower means faster
  45. var pause=20
  46. // speed 2: higher means faster
  47. var step=2
  48. // font-size
  49. var fntsize=8
  50. // font-family
  51. var fntfamily="Arial"
  52. // font-weight: 1 means bold, 0 means normal
  53. var fntweight=1
  54. // do not edit the variables below
  55. var scrollerwidth=368
  56. var scrollerheight=20
  57. var scrollerleft_in=scrollerleft+16
  58. var scrollertop_in=scrollertop+12
  59. var backgroundimagecontent
  60. var clipleft,clipright,cliptop,clipbottom
  61. var i_message=0
  62. var timer
  63. var textwidth
  64. var textcontent=""
  65. var textcountercontent=""
  66. if (fntweight==1) {fntweight="700"}
  67. else {fntweight="100"}
  68. function init() {
  69. gettextcontent()
  70. &nbsp; &nbsp;if (document.all) {
  71. &nbsp;text.innerHTML=textcontent
  72. &nbsp;textcounter.innerHTML=textcountercontent
  73. &nbsp;textwidth=text.offsetWidth
  74. &nbsp;document.all.text.style.posTop=scrollertop_in
  75. &nbsp; &nbsp; &nbsp; &nbsp;document.all.text.style.posLeft=scrollerleft_in+scrollerwidth
  76. &nbsp;document.all.textcounter.style.posTop=scrollertop_in+26
  77. &nbsp; &nbsp; &nbsp; &nbsp;document.all.textcounter.style.posLeft=scrollerleft_in+2
  78. &nbsp;document.all.backgroundimage.style.posTop=scrollertop
  79. &nbsp; &nbsp; &nbsp; &nbsp;document.all.backgroundimage.style.posLeft=scrollerleft
  80. &nbsp;clipleft=0
  81. &nbsp;clipright=0
  82. &nbsp;cliptop=0
  83. &nbsp;clipbottom=scrollerheight
  84. &nbsp;document.all.text.style.clip ="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
  85. &nbsp; &nbsp; &nbsp; &nbsp;scrolltext()
  86. &nbsp; &nbsp;}
  87. if (document.layers) {
  88. &nbsp;document.text.document.write(textcontent)
  89. &nbsp;document.text.document.close()
  90. &nbsp;document.textcounter.document.write(textcountercontent)
  91. &nbsp;document.textcounter.document.close()
  92. &nbsp;textwidth=document.text.document.width
  93. &nbsp;document.text.top=scrollertop_in
  94. &nbsp;document.text.left=scrollerleft_in+scrollerwidth
  95. &nbsp;document.textcounter.top=scrollertop_in+26
  96. &nbsp;document.textcounter.left=scrollerleft_in+2
  97. &nbsp;document.backgroundimage.top=scrollertop
  98. &nbsp; &nbsp; &nbsp; &nbsp;document.backgroundimage.left=scrollerleft
  99. &nbsp;
  100. &nbsp;document.text.clip.left=0
  101. &nbsp;document.text.clip.right=0
  102. &nbsp;document.text.clip.top=0
  103. &nbsp;document.text.clip.bottom=scrollerheight
  104. &nbsp; &nbsp; &nbsp; &nbsp;scrolltext()
  105. &nbsp; &nbsp;}
  106. }
  107. function scrolltext() {
  108. &nbsp; &nbsp;if (document.all) {
  109. &nbsp;if (document.all.text.style.posLeft>=scrollerleft_in-textwidth) {
  110. &nbsp; document.all.text.style.posLeft-=step
  111. &nbsp; clipright+=step
  112. &nbsp; if (clipright>scrollerwidth) {
  113. &nbsp; &nbsp;clipleft+=step
  114. &nbsp; }
  115. &nbsp; document.all.text.style.clip ="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
  116. &nbsp;
  117. &nbsp; var timer=setTimeout("scrolltext()",pause)
  118. &nbsp;}
  119. &nbsp;else {
  120. &nbsp; changetext()
  121. &nbsp;}
  122. }
  123. &nbsp; if (document.layers) {
  124. &nbsp;if (document.text.left>=scrollerleft_in-textwidth) {
  125. &nbsp; document.text.left-=step
  126. &nbsp; document.text.clip.right+=step
  127. &nbsp; if (document.text.clip.right>scrollerwidth) {
  128. &nbsp; &nbsp;document.text.clip.left+=step
  129. &nbsp; }
  130. &nbsp; var timer=setTimeout("scrolltext()",pause)
  131. &nbsp;}
  132. &nbsp;else {
  133. &nbsp; changetext()
  134. &nbsp;}
  135. }
  136. }
  137. function changetext() {
  138. &nbsp; &nbsp;i_message++
  139. if (i_message>message.length-1) {i_message=0}
  140. gettextcontent()
  141. if (document.all) {
  142. &nbsp;text.innerHTML=textcontent
  143. &nbsp;textwidth=text.offsetWidth
  144. &nbsp;textcounter.innerHTML=textcountercontent
  145. &nbsp;
  146. &nbsp; &nbsp; &nbsp; &nbsp;document.all.text.style.posLeft=scrollerleft_in+scrollerwidth
  147. &nbsp;clipleft=0
  148. &nbsp;clipright=0
  149. &nbsp;document.all.text.style.clip ="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
  150. &nbsp;
  151. &nbsp; &nbsp; &nbsp; &nbsp;scrolltext()
  152. }
  153. if (document.layers) {
  154. &nbsp; &nbsp; document.text.document.write(textcontent)
  155. &nbsp;document.text.document.close()
  156. &nbsp;
  157. &nbsp;document.textcounter.document.write(textcountercontent)
  158. &nbsp;document.textcounter.document.close()
  159. &nbsp;
  160. &nbsp;textwidth=document.text.document.width
  161. &nbsp;document.text.left=scrollerleft_in+scrollerwidth
  162. &nbsp;document.text.clip.left=0
  163. &nbsp;document.text.clip.right=0
  164. &nbsp;
  165. &nbsp; &nbsp; &nbsp; &nbsp;scrolltext()
  166. }
  167. }
  168. function gettextcontent() {
  169. textcontent="<span style='position:relative;font-size:"+fntsize+"pt;font-family:"+fntfamily+";font-weight:"+fntweight+"'>"
  170. textcontent+="<a href="+messageurl[i_message]+" target="+messagetarget[i_message]+">"
  171. textcontent+="<nobr><font color="+messagecolor[i_message]+">"+message[i_message]+"</font></nobr></a></span>"
  172. var i_textcounter=i_message+1
  173. textcountercontent="<span style='position:relative;font-size:"+textcountersize+"pt;font-family:"+fntfamily+";font-weight:"+fntweight+"'>"
  174. textcountercontent+="<nobr><font color="+textcountercolor+">This is message "+i_textcounter+" of "+message.length+"</font></nobr></span>"
  175. }
  176. function changespeed(newspeed) {
  177. &nbsp; &nbsp;if (newspeed=="faster") {
  178. &nbsp;step=step+1
  179. &nbsp;if (step>=20) {step=20}
  180. }
  181. else if (newspeed=="slower") {
  182. &nbsp;step=step-1
  183. &nbsp;if (step<0) {step=0}
  184. }
  185. }
  186. window.onresize=init;
  187. // - End of JavaScript - -->
  188. </SCRIPT>
  189. <STYLE>
  190. A {
  191. text-decoration:none;
  192. }
  193. A:Hover {
  194. text-decoration:underline;
  195. }
  196. body{
  197. overflow-x:hidden;
  198. overflow-y:scroll;
  199. }
  200. </STYLE>
  201. <!-- HEAD END HERE -->
  202. </head>
  203. <body bgcolor="#EDEDED" text="#000000" link="#000000" topmargin="0" leftmargin="0" onLoad="init()">
  204. <center>
  205. <!-- BODY START HERE -->
  206. <DIV ID="backgroundimage" style="position:absolute;left:-2000px"><IMG SRC="textrighttoleftdesign.gif" USEMAP="#textrighttoleft" BORDER=0>
  207. <MAP NAME="textrighttoleft">
  208. &nbsp;<AREA SHAPE=RECT COORDS="271,33,297,54" HREF="#" onClick="changespeed('slower')">
  209. &nbsp;<AREA SHAPE=RECT COORDS="364,33,388,53" HREF="#" onClick="changespeed('faster')">
  210. </MAP></DIV>
  211. <DIV ID="text" style="position:absolute;left:-2000px"></DIV>
  212. <DIV ID="textcounter" style="position:absolute;left:-2000px"></DIV>
  213. <!-- BODY END HERE -->
  214. </body>
  215. </html>

0
161
band-girl @band-girl
Вращение двух объектов вокруг третьего в противоположных направлениях (по круговым орбитам)
  1.  
  2. <script language="JavaScript">
  3. <!--
  4. var r = 50;
  5. var xoff = 450;
  6. var yoff = 267;
  7. var pi = Math.PI;
  8. var inc = pi / 30;
  9. var pos=0;
  10. function move() {
  11. pos += inc;
  12. obj1.left = (r * Math.cos(pos)) + xoff-5;
  13. obj1.top = (r * Math.sin(pos)) + yoff-5;
  14. obj2.left = (r *0.75* Math.sin(pos)) + xoff-5;
  15. obj2.top = (r *0.75* Math.cos(pos)) + yoff-5;
  16. setTimeout("move()", 50);
  17. }
  18. -->
  19. </script>
  20. </head>
  21. <body>
  22. <div id="obj1" style="position:absolute; width:10px; height:10px"><img src="../gif/ball3.gif" width=10 height=10 border=0></div><div id="obj2" style="position:absolute; width:10px; height:10px"><img src="../gif/ball2.gif" width=10 height=10 border=0></div><div style="position:absolute; left:430px; top:247px; width:39px; height:42px"><img src="../gif/heart.gif" width="33" height="30" border=0></div>
  23. <script language="JavaScript">
  24. <!--
  25. var NN = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 4);
  26. var obj1 = (NN) ? document.obj1 : document.all.obj1.style;
  27. var obj2 = (NN) ? document.obj2 : document.all.obj2.style;
  28. move();
  29. -->
  30. </script>


Хороший скрипт колькулятора:
  1. <html>
  2. <head>
  3. <title>Калькулятор</title>
  4. </head>
  5. <script language="JavaScript">
  6. <!--
  7. // deklaracja zmiennych
  8. var wynik=0, op=0, nowe=0, nowe2=0, done=1, oset=0, kropka, temp;
  9. function reset(value)
  10. {
  11. document.form1.ekran.value = value;
  12. wynik = 0,
  13. op &nbsp; &nbsp;= 0,
  14. nowe &nbsp;= 0,
  15. nowe2 = 0;
  16. done &nbsp;= 1;
  17. oset &nbsp;= 0;
  18. }
  19. function wspolna(new_temp)
  20. {
  21. kropka = 1;
  22. if(nowe || done) {
  23. nowe = 0;
  24. done = 0;
  25. temp = new_temp;
  26. }
  27. for(var i=0; i<temp.length; i++) if (temp[i]=='.') kropka=0;
  28. }
  29. function button(ktory,ktory2)
  30. {
  31. temp = document.form1.ekran.value;
  32. if(ktory2=='.') {
  33. wspolna('0');
  34. if(kropka) {
  35. temp += ktory2;
  36. document.form1.ekran.value = temp;
  37. oset = 0;
  38. }
  39. }
  40. if(ktory>=0 && ktory<=9) &nbsp;{
  41. wspolna('');
  42. if(temp==0 && kropka==1) temp='';
  43. temp += ktory;
  44. document.form1.ekran.value = temp;
  45. oset = 1;
  46. }
  47. if(ktory2=='-' || ktory2=='+' || ktory2=='/' || ktory2=='*') {
  48. if(nowe) op = ktory2
  49. else {
  50. if(!nowe2) {
  51. op = ktory2;
  52. wynik = temp;
  53. nowe2=1;
  54. }
  55. else {
  56. wynik = eval(wynik + op + temp);
  57. op = ktory2;
  58. document.form1.ekran.value = wynik;
  59. }
  60. oset=0;
  61. nowe = 1;
  62. }
  63. }
  64. if(ktory2=='1/x' ) { wynik = eval(1 / temp); reset(wynik); }
  65. if(ktory2=='sqrt') { wynik = Math.sqrt(temp); reset(wynik); }
  66. if(ktory2=='exp' ) { wynik = Math.exp(temp); reset(wynik); }
  67. if(ktory2=='+/-') &nbsp;document.form1.ekran.value = eval(-temp);
  68. if(ktory2=='=' && oset && op!='0') reset(eval(wynik + op + temp));
  69. if (ktory2=='C') reset(0);
  70. if(document.form1.ekran.value[0] == '.')
  71. document.form1.ekran.value = '0' + document.form1.ekran.value;
  72. }
  73. //-->
  74. </script>
  75. <body>
  76. <center>
  77. <form name="form1">
  78. <table bgColor="#430086">
  79. <tbody>
  80. <tr><td><table bgColor="#430086" border="1" cellPadding="0" cellSpacing="5">
  81. <tbody>
  82. <tr align="middle">
  83. <td colSpan="5"><input name="ekran" value="0" size="20"></td></tr>
  84. <tr align="middle">
  85. <td colSpan="4"><b><font color="#FFFF00">Калькулятор</font></b></td>
  86. <td><input name="C" onclick="button(11,'C')" type="button" value=" &nbsp;C &nbsp;"></td></tr>
  87. <tr align="middle">
  88. <td><input name="7" onclick="button(7 ,'')" type="button" value=" &nbsp;7 &nbsp;"></td>
  89. <td><input name="8" onclick="button(8 ,'')" type="button" value=" &nbsp;8 &nbsp;"></td>
  90. <td><input name="9" onclick="button(9 ,'')" type="button" value=" &nbsp;9 &nbsp;"></td>
  91. <td><input name="/" onclick="button(11,'/')" type="button" value=" &nbsp;/ &nbsp;"></td>
  92. <td><input name="sqrt" onclick="button(11,'sqrt')" type="button" value="sqrt"></td></tr>
  93. <tr align="middle">
  94. <td><input name="4" onclick="button(4,'')" type="button" value=" &nbsp;4 &nbsp;"></td>
  95. <td><input name="5" onclick="button(5,'')" type="button" value=" &nbsp;5 &nbsp;"></td>
  96. <td><input name="6" onclick="button(6,'')" type="button" value=" &nbsp;6 &nbsp;"></td>
  97. <td><input name="*" onclick="button(11,'*')" type="button" value=" * &nbsp;"></td>
  98. <td><input name="exp" onclick="button(11,'exp')" type="button" value="exp"></td></tr>
  99. <tr align="middle">
  100. <td><input name="1" onclick="button(1,'')" type="button" value=" &nbsp;1 &nbsp;"></td>
  101. <td><input name="2" onclick="button(2,'')" type="button" value=" &nbsp;2 &nbsp;"></td>
  102. <td><input name="3" onclick="button(3,'')" type="button" value=" &nbsp;3 &nbsp;"></td>
  103. <td><input name="-" onclick="button(11,'-')" type="button" value=" &nbsp;- &nbsp;"></td>
  104. <td><input name="1/x" onclick="button(11,'1/x')" type="button" value="1/x "></td></tr>
  105. <tr align="middle">
  106. <td><input name="0" onclick="button(0,'')" type="button" value=" &nbsp;0 &nbsp;"></td>
  107. <td><input name="+/-" onclick="button(11,'+/-')" type="button" value=" +/- "></td>
  108. <td><input name="." onclick="button(11,'.')" type="button" value=" &nbsp;, &nbsp;"></td>
  109. <td><input name="+" onclick="button(11,'+')" type="button" value=" &nbsp;+ &nbsp;"></td>
  110. <td><input name="=" onclick="button(11,'=')" type="button" value=" &nbsp;= &nbsp;"></td>
  111. </tr>
  112. </tbody>
  113. </table>
  114. </td>
  115. </tr>
  116. </tbody>
  117. </table>
  118. </center>
  119. </form>
  120. </body>
  121. </html>

0
215
Сатана @Сатана
Когда юзер зайдет к Вам на страницу бекграунд начнет менять свой цвет
  1. <html>
  2. <head>
  3. <title>WOweb.ru - JavaScript - Background Changer</title>
  4. <!-- HEAD STARTS HERE -->
  5. <!-- Background Changer
  6. Just make sure you add your Title before this script.
  7. If you change the last line in will give you the rest
  8. of the information for your page (link color,text etc.)
  9. Play with the colors !--> <script>
  10. // Modified by WebmastersOnline
  11. function initArray()
  12. {
  13. &nbsp; this.length = initArray.arguments.length
  14. &nbsp; for (var i = 0; i < this.length; i++)
  15. &nbsp; &nbsp; this[i+1] = initArray.arguments[i]
  16. }
  17. var hexChars = "0123456789ABCDEF";
  18. function Dec2Hex (Dec)
  19. {
  20. &nbsp; var a = Dec % 16;
  21. &nbsp; var b = (Dec - a)/16;
  22. &nbsp; hex = "" + hexChars.charAt(b) + hexChars.charAt(a);
  23. &nbsp; return hex;
  24. }
  25. function bgChanger (begin, end, steps)
  26. {
  27. &nbsp; steps = steps -1;
  28. &nbsp; redA &nbsp; &nbsp; = begin.charAt(0) + begin.charAt(1);
  29. &nbsp; red_valA = parseInt(redA,'16');
  30. &nbsp; redB &nbsp; &nbsp; = end.charAt(0) + end.charAt(1);
  31. &nbsp; red_valB = parseInt(redB,'16');
  32. &nbsp; red_int &nbsp;= ((red_valB - red_valA) / steps) * -1;
  33. &nbsp; grnA &nbsp; &nbsp; = begin.charAt(2) + begin.charAt(3);
  34. &nbsp; grn_valA = parseInt(grnA,'16');
  35. &nbsp; grnB &nbsp; &nbsp; = end.charAt(2) + end.charAt(3);
  36. &nbsp; grn_valB = parseInt(grnB,'16');
  37. &nbsp; grn_int &nbsp;= ((grn_valB - grn_valA) / steps) * -1;
  38. &nbsp; bluA &nbsp; &nbsp; = begin.charAt(4) + begin.charAt(5);
  39. &nbsp; blu_valA = parseInt(bluA,'16');
  40. &nbsp; bluB &nbsp; &nbsp; = end.charAt(4) + end.charAt(5);
  41. &nbsp; blu_valB = parseInt(bluB,'16');
  42. &nbsp; blu_int &nbsp;= ((blu_valB - blu_valA) / steps) * -1;
  43. &nbsp; step = 2;
  44. &nbsp; red = red_valA;
  45. &nbsp; grn = grn_valA;
  46. &nbsp; blu = blu_valA;
  47. &nbsp; document.bgColor = begin;
  48. &nbsp; while ( steps >= step )
  49. &nbsp; {
  50. &nbsp; &nbsp; red -= red_int;
  51. &nbsp; &nbsp; red_round = Math.round(red);
  52. &nbsp; &nbsp; red_hex = Dec2Hex(red);
  53. &nbsp; &nbsp; grn -= grn_int;
  54. &nbsp; &nbsp; grn_round = Math.round(grn);
  55. &nbsp; &nbsp; grn_hex = Dec2Hex(grn);
  56. &nbsp; &nbsp; blu -= blu_int;
  57. &nbsp; &nbsp; blu_round = Math.round(blu);
  58. &nbsp; &nbsp; blu_hex = Dec2Hex(blu);
  59. &nbsp; &nbsp; document.bgColor = red_hex + grn_hex + blu_hex;
  60. &nbsp; &nbsp; step++;
  61. &nbsp; }
  62. &nbsp; document.bgColor = end;
  63. }
  64. </script>
  65. <!-- HEAD ENDS HERE -->
  66. </head>
  67. <body bgcolor="#EDEDED" text="#000000" link="#000000">
  68. <!-- BODY STARTS HERE -->
  69. <script>
  70. <!--
  71. &nbsp; bgChanger("000000","000000",45);
  72. &nbsp; bgChanger("000000","FF0000",45);
  73. &nbsp; bgChanger("FF0000","000000",45);
  74. &nbsp; bgChanger("000000","AA00EE",45);
  75. &nbsp; bgChanger("AA00EE","000000",45);
  76. &nbsp; bgChanger("000000","0000FF",45);
  77. &nbsp; bgChanger("0000FF","000000",45);
  78. &nbsp; bgChanger("000000","36456c",45);
  79. &nbsp; bgChanger("36456c","EDEDED",45);
  80. // -->
  81. </script>
  82. <!-- BODY ENDS HERE -->
  83. </body>
  84. </html>

0
161
band-girl @band-girl
Снегопад
  1.  
  2. <script language="JavaScript">
  3. <!-- fall Script by kurt.grigg@virgin.net
  4. Amount=30; //Smoothness! depends on image file size, the smaller the size the more you can use!
  5. //Pre-load your image below!
  6. Image0=new Image();
  7. Image0.src="flake1.gif";
  8. Image1=new Image();
  9. Image1.src="flake2.gif";
  10. Image2=new Image();
  11. Image2.src="flake3.gif";
  12. Image3=new Image();
  13. Image3.src="flake4.gif";
  14. Image4=new Image();
  15. Image4.src="flake5.gif";
  16. grphcs=new Array(5)
  17. grphcs[0]="flake1.gif"
  18. grphcs[1]="flake2.gif"
  19. grphcs[2]="flake3.gif"
  20. grphcs[3]="flake4.gif"
  21. grphcs[4]="flake5.gif"
  22. Ypos=new Array();
  23. Xpos=new Array();
  24. Speed=new Array();
  25. Step=new Array();
  26. Cstep=new Array();
  27. ns=(document.layers)?1:0;
  28. if (ns){
  29. for (i = 0; i < Amount; i++){
  30. var P=Math.floor(Math.random()*grphcs.length);
  31. rndPic=grphcs[P];
  32. document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
  33. }
  34. }
  35. else{
  36. document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
  37. for (i = 0; i < Amount; i++){
  38. var P=Math.floor(Math.random()*grphcs.length);
  39. rndPic=grphcs[P];
  40. document.write('<img id="si" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
  41. }
  42. document.write('</div></div>');
  43. }
  44. WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
  45. WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
  46. for (i=0; i < Amount; i++){ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
  47. Ypos[i] = Math.round(Math.random()*WinHeight);
  48. Xpos[i] = Math.round(Math.random()*WinWidth);
  49. Speed[i]= Math.random()*3+2;
  50. Cstep[i]=0;
  51. Step[i]=Math.random()*0.1+0.05;
  52. }
  53. function fall(){
  54. var WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
  55. var WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
  56. var hscrll=(document.layers)?window.pageYOffset:document.body.scrollTop;
  57. var wscrll=(document.layers)?window.pageXOffset:document.body.scrollLeft;
  58. for (i=0; i < Amount; i++){
  59. sy = Speed[i]*Math.sin(90*Math.PI/180);
  60. sx = Speed[i]*Math.cos(Cstep[i]);
  61. Ypos[i]+=sy;
  62. Xpos[i]+=sx;
  63. if (Ypos[i] > WinHeight){
  64. Ypos[i]=-60;
  65. Xpos[i]=Math.round(Math.random()*WinWidth);
  66. Speed[i]=Math.random()*5+2;
  67. }
  68. if (ns){
  69. document.layers['sn'+i].left=Xpos[i];
  70. document.layers['sn'+i].top=Ypos[i]+hscrll;
  71. }
  72. else{
  73. si[i].style.pixelLeft=Xpos[i];
  74. si[i].style.pixelTop=Ypos[i]+hscrll;
  75. }
  76. Cstep[i]+=Step[i];
  77. }
  78. setTimeout('fall()',10);
  79. }
  80. //-->
  81. </script>
  82. <!-- BODY END HERE -->
  83. </body>
  84. </html>


Прицел.
  1. <
  2. <!-- HEAD START HERE -->
  3. <script>
  4. <!-- Beginning of JavaScript -
  5. var x = -50
  6. var y = -50
  7. var filteractive=0
  8. function filteraktivator(filterstatus) {
  9. &nbsp; filteractive=filterstatus
  10. }
  11. function positionrulers() {
  12. if(document.layers) {
  13. &nbsp;document.vertical.left=x
  14. &nbsp;document.horizontal.top=y
  15. &nbsp; &nbsp; &nbsp; &nbsp;if (filteractive==1) {
  16. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;document.vertical2.left=x
  17. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;document.horizontal2.top=y
  18. &nbsp; &nbsp; &nbsp; &nbsp;}
  19. &nbsp; &nbsp; &nbsp; &nbsp; if (filteractive==0) {
  20. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;document.vertical2.left=-50
  21. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;document.horizontal2.top=-50
  22. &nbsp; &nbsp; &nbsp; &nbsp;}
  23. }
  24. if(document.all) {
  25. &nbsp;document.all.vertical.style.posLeft=x
  26. &nbsp;document.all.horizontal.style.posTop=y
  27. &nbsp; &nbsp; &nbsp; &nbsp; if (filteractive==1) {
  28. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;document.all.vertical2.style.posLeft=x
  29. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;document.all.horizontal2.style.posTop=y
  30. &nbsp; &nbsp; &nbsp; &nbsp;}
  31. &nbsp; &nbsp; &nbsp; &nbsp; if (filteractive==0) {
  32. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;document.all.vertical2.style.posLeft=-50
  33. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;document.all.horizontal2.style.posTop=-50
  34. &nbsp; &nbsp; &nbsp; &nbsp;}
  35. }
  36. &nbsp; &nbsp;timer =setTimeout("positionrulers()",20)
  37. }
  38. function handlerMM(e){
  39. x = (document.layers) ? e.pageX : event.clientX
  40. y = (document.layers) ? e.pageY : event.clientY
  41. }
  42. if (document.layers){
  43. document.captureEvents(Event.MOUSEMOVE);
  44. }
  45. document.onmousemove = handlerMM;
  46. // - End of JavaScript - -->
  47. </SCRIPT>
  48. <!-- HEAD END HERE -->
  49. </head>
  50. <body bgcolor="#EDEDED" text="#000000" link="#000000" topmargin="0" leftmargin="0" id=thisbody onload=positionrulers()>
  51. <!-- BODY START HERE -->
  52. <P align=center><B>Чтоб точно в цель...</B></P>
  53. <DIV id=horizontal style="LEFT: -50px; POSITION: absolute"><IMG height=1
  54. src="primer55.gif" width=1600></DIV>
  55. <DIV id=vertical style="POSITION: absolute; TOP: -50px"><IMG height=1600
  56. src="primer55.gif" width=1></DIV>
  57. <DIV id=horizontal2 style="LEFT: -50px; POSITION: absolute"><IMG height=5
  58. src="primer55.gif" width=1600></DIV>
  59. <DIV id=vertical2 style="POSITION: absolute; TOP: -50px"><IMG height=1600
  60. src="primer55.gif" width=5></DIV>
  61. <DIV id=source style="LEFT: 50px; WIDTH: 450px; POSITION: absolute; TOP: 50px"
  62. align=center><A onmouseover="filteraktivator('1')"
  63. onmouseout="filteraktivator('0')" target=_blank
  64. href="http://www.woweb.ru/">Это пример линка</A> и просто
  65. текста.</DIV>
  66. <!-- BODY END HERE -->
  67. </body>
  68. </html>

0
161
band-girl @band-girl
Поносите курсор к кнопке и она убегает:
  1. <script LANGUAGE="JavaScript">
  2. <!-- Begin
  3. var flag = 1;
  4. function t() {
  5. if(flag == 1) {
  6. N.style.top = "75px";
  7. N.style.left = "300px";
  8. }
  9. if(flag == 2) {
  10. N.style.top = "115px";
  11. N.style.left = "100px";
  12. }
  13. if(flag == 3) {
  14. N.style.top = "20px";
  15. N.style.left = "100px";
  16. }
  17. flag = flag + 1;
  18. if(flag == 4) {
  19. flag = 1;
  20. &nbsp; }
  21. }
  22. function al() {
  23. alert("Правильный ответ!");
  24. }
  25. // &nbsp;End -->
  26. </script>
  27. <!-- HEAD END HERE -->
  28. </head>
  29. <body bgcolor="#EDEDED" text="#000000" link="#000000" topmargin="0" leftmargin="0">
  30. <center>
  31. <!-- BODY START HERE -->
  32. <center>
  33. WOweb.ru лучший сайт для веб-мастера?
  34. <DIV ID="N" STYLE="position:absolute; left:100px; top:20px; width:50px; height:50px;">
  35. <form>
  36. <input type=button value="NO" onMouseover="t()">
  37. </form>
  38. </DIV>
  39. <DIV ID="Y" STYLE="position:absolute; left:50px; top:20px; width:50px; height:50px;">
  40. <form>
  41. <input type=button value="YES" onClick="al()">
  42. </form>
  43. <!-- BODY END HERE -->
  44. <p>&nbsp;</p>
  45. <p align="center">&nbsp;</p>
  46. <div align="center">
  47. &nbsp;<center>
  48. <table border="0" cellspacing="0" cellpadding="0">
  49. &nbsp;<tr>
  50. &nbsp; &nbsp;<td width="100%">
  51. &nbsp; &nbsp; &nbsp;<p align="center"><!--#exec cgi="/cgi-bin/inside/ads/ads.cgi" -->
  52. &nbsp; &nbsp; &nbsp;</td>
  53. &nbsp;</tr>
  54. </table>
  55. &nbsp;</center>
  56. </div>
  57. </body>
  58. </html>


Случайные фразы:
  1. <html>
  2. <head>
  3. <title>Random Phrase</title>
  4. </head>
  5. <body bgcolor="36456c" text="white" link="white" vlink="white">
  6. <script language="JavaScript">
  7. <!--
  8. quotes = new Array(6);
  9. authors = new Array(6);
  10. quotes[0] = "I have a new philosophy. I'm only going to dread one day at a time.";
  11. authors[0] = "Charles Schulz";
  12. quotes[1] = "Reality is the leading cause of stress for those in touch with it.";
  13. authors[1] = "Jack Wagner";
  14. quotes[2] = "Few things are harder to put up with than the annoyance of a good example.";
  15. authors[2] = "Mark Twain";
  16. quotes[3] = "The pure and simple truth is rarely pure and never simple.";
  17. authors[3] = "Oscar Wilde";
  18. quotes[4] = "There's no business like show business, but there are several businesses like accounting.";
  19. authors[4] = "David Letterman";
  20. quotes[5] = "Man invented language to satisfy his deep need to complain.";
  21. authors[5] = "Lily Tomlin";

0
249
BOOMBASTER @BOOMBASTER
Старик летает по страницы делает разные анимации и говорит
  1. <object id="AgentControl" width="0" height="0"
  2. &nbsp;classid="CLSID:D45FD31B-5C6E-11D1-9EC1-00C04FD7081F"
  3. &nbsp;codebase="#VERSION=2,0,0,0">
  4. </object>
  5. <object id="L&HTruVoice" width="0" height="0"
  6. &nbsp;classid="CLSID:B8F2846E-CE36-11D0-AC83-00C04FD97575"
  7. &nbsp;codebase="#VERSION=6,0,0,0">
  8. </object>
  9. <script language="JavaScript" type="text/javascript" type="text/javascript">
  10. <!--//
  11. /*
  12. '_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  13. '_/ Portions generated by MASH - Microsoft Agent Scripting Helper, version 7.3
  14. '_/ by BellCraft Technologies, http://www.bellcraft.com/mash
  15. '_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  16. */
  17. // * Character Objects
  18. var Merlin;
  19. // * Variables
  20. var UsedChars;
  21. var MerlinID;
  22. var MerlinACS;
  23. var MerlinLoaded;
  24. var LoadReq;
  25. var HideReq;
  26. // * Initialize
  27. UsedChars = "Merlin";
  28. // * Merlin
  29. MerlinID = "Merlin";
  30. MerlinACS = "merlin.acs";
  31. MerlinLoaded = false;
  32. Window_OnLoad();
  33. function Window_OnLoad() {
  34. &nbsp; &nbsp;// Purpose: &nbsp;Runs automatically when page is loaded
  35. &nbsp; &nbsp;// * INSERT ANY NON-AGENT RELATED SCRIPTING HERE
  36. &nbsp; &nbsp;AgentControl.Connected = true;
  37. &nbsp; &nbsp;MerlinLoaded = LoadLocalChar(MerlinID, MerlinACS);
  38. &nbsp; &nbsp;if (!MerlinLoaded) {
  39. &nbsp; &nbsp; &nbsp; &nbsp;// Attempt to load default character
  40. &nbsp; &nbsp; &nbsp; &nbsp;MerlinLoaded = LoadLocalChar(MerlinID, "");
  41. &nbsp; &nbsp;}
  42. &nbsp; &nbsp;if (MerlinLoaded) {
  43. &nbsp; &nbsp; &nbsp; &nbsp;SetCharObj();
  44. &nbsp; &nbsp;}
  45. &nbsp; &nbsp;CheckLoadStatus();
  46. }
  47. function LoadLocalChar(CharID, CharACS) {
  48. &nbsp; &nbsp;// Purpose: &nbsp;Attempts to load the specified character
  49. &nbsp; &nbsp;// Returns: &nbsp;true if successful, false if not
  50. &nbsp; &nbsp;AgentControl.RaiseRequestErrors = false;
  51. &nbsp; &nbsp;if (CharACS == "") {
  52. &nbsp; &nbsp; &nbsp; &nbsp;LoadReq = AgentControl.Characters.Load(CharID);
  53. &nbsp; &nbsp;}
  54. &nbsp; &nbsp;else {
  55. &nbsp; &nbsp; &nbsp; &nbsp;LoadReq = AgentControl.Characters.Load(CharID, CharACS);
  56. &nbsp; &nbsp;}
  57. &nbsp; &nbsp;AgentControl.RaiseRequestErrors = true;
  58. &nbsp; &nbsp;if (LoadReq.Status != 1) {
  59. &nbsp; &nbsp; &nbsp; &nbsp;return(true);
  60. &nbsp; &nbsp;}
  61. &nbsp; &nbsp;return(false);
  62. }
  63. function SetCharObj() {
  64. &nbsp; &nbsp;// Purpose: &nbsp;Sets the character reference and TTS Language ID
  65. &nbsp; &nbsp;Merlin = AgentControl.Characters.Character(MerlinID);
  66. &nbsp; &nbsp;Merlin.LanguageID = 0x409;
  67. }
  68. function CheckLoadStatus() {
  69. &nbsp; &nbsp;// Purpose: &nbsp;Determines if required characters have been loaded.
  70. &nbsp; &nbsp;// &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If not, issue request to load next character
  71. &nbsp; &nbsp;// &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else run the AgentIntro routine
  72. &nbsp; &nbsp;if (!MerlinLoaded) {
  73. &nbsp; &nbsp; &nbsp; &nbsp;LoadError();
  74. &nbsp; &nbsp; &nbsp; &nbsp;return(false);
  75. &nbsp; &nbsp;}
  76. &nbsp; &nbsp;window.status = "";
  77. &nbsp; &nbsp;AgentIntro();
  78. &nbsp; &nbsp;return(true);
  79. }
  80. function LoadError() {
  81. &nbsp; &nbsp;var strMsg;
  82. &nbsp; &nbsp;window.status = "";
  83. &nbsp; &nbsp;strMsg = "Error Loading Character: " + MerlinID + "\n";
  84. &nbsp; &nbsp;strMsg = strMsg + "This Microsoft Agent Script requires the character(s):\n";
  85. &nbsp; &nbsp;strMsg = strMsg + UsedChars;
  86. &nbsp; &nbsp;alert(strMsg);
  87. }
  88. function InitAgentCommands() {
  89. &nbsp; &nbsp;// Purpose: &nbsp;Initialize the Commands menu
  90. &nbsp; &nbsp;Merlin.Commands.RemoveAll();
  91. &nbsp; &nbsp;Merlin.Commands.Caption = "MASH Menu";
  92. &nbsp; &nbsp;Merlin.Commands.Add("ACO", "Advanced Character Options", "Advanced Character Options");
  93. }
  94. function AgentIntro() {
  95. &nbsp; &nbsp;InitAgentCommands();
  96. &nbsp; &nbsp;// *** BEGIN MASH USER SCRIPT ***
  97. &nbsp; &nbsp;Merlin.Show();
  98. &nbsp; &nbsp;Merlin.Play("GetAttention");
  99. &nbsp; &nbsp;Merlin.Speak("Привет");
  100. &nbsp; &nbsp;Merlin.Play("MoveLeft");
  101. &nbsp; &nbsp;Merlin.Speak("Если ты впервые в этом чате прочитай правила и зарегистрируйся");
  102. &nbsp; &nbsp;Merlin.Play("Announce");
  103. &nbsp; &nbsp;Merlin.Speak("Будь вежлив в чате!");
  104. &nbsp; &nbsp;Merlin.Speak("Ну вот вроде всё!Я скроюсь и буду ждать новых посетителей!");
  105. &nbsp; &nbsp;Merlin.Hide();
  106. &nbsp; &nbsp;// *** END MASH USER SCRIPT ***
  107. }
  108. //-->
  109. </script>
  110. <script language="JavaScript" type="text/javascript" for="AgentControl" event="RequestComplete(RequestObject)">
  111. <!--//
  112. &nbsp; &nbsp;// Purpose: &nbsp;Take action on completion or failure of requests
  113. //-->
  114. </script>
  115. <script language="JavaScript" type="text/javascript" for="AgentControl" event="Command(UserInput)">
  116. <!--//
  117. &nbsp; &nbsp;// Purpose: &nbsp;Determine Command that was selected either by menu or voice
  118. &nbsp; &nbsp;// &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; and run the applicable Command Script
  119. &nbsp; &nbsp;var BadConfidence;
  120. &nbsp; &nbsp;BadConfidence = 10;
  121. &nbsp; &nbsp;if (UserInput.Confidence <= -40)
  122. &nbsp; &nbsp;{
  123. &nbsp; &nbsp; &nbsp; &nbsp;// Bad Recognition
  124. &nbsp; &nbsp;}
  125. &nbsp; &nbsp;else if ((UserInput.Alt1Name != "") && (Math.abs(Math.abs(UserInput.Alt1Confidence) - Math.abs(UserInput.Confidence)) < BadConfidence))
  126. &nbsp; &nbsp;{
  127. &nbsp; &nbsp; &nbsp; &nbsp;// Bad Confidence - too close to another command
  128. &nbsp; &nbsp;}
  129. &nbsp; &nbsp;else if ((UserInput.Alt2Name != "") && (Math.abs(Math.abs(UserInput.Alt1Confidence) - Math.abs(UserInput.Confidence)) < BadConfidence))
  130. &nbsp; &nbsp;{
  131. &nbsp; &nbsp; &nbsp; &nbsp;// Bad Confidence - too close to another command
  132. &nbsp; &nbsp;}
  133. &nbsp; &nbsp;else
  134. &nbsp; &nbsp;{
  135. &nbsp; &nbsp; &nbsp; &nbsp;// High Confidence
  136. &nbsp; &nbsp; &nbsp; &nbsp;// *** BEGIN MASH USER COMMANDS ***
  137. &nbsp; &nbsp; &nbsp; &nbsp;switch(UserInput.Name) {
  138. &nbsp; &nbsp; &nbsp; &nbsp;case "ACO" :
  139. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AgentControl.PropertySheet.Visible = true;
  140. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;
  141. &nbsp; &nbsp; &nbsp; &nbsp;}
  142. &nbsp; &nbsp; &nbsp; &nbsp;// *** END MASH USER COMMANDS ***
  143. &nbsp; &nbsp;}
  144. //-->
  145. </script>
  146. <script language="JavaScript" type="text/javascript" for="AgentControl" event="Bookmark(BookmarkID)">
  147. <!--//
  148. //-->
  149. </script>
  150. <script language="JavaScript" type="text/javascript" for="AgentControl" event="Click(CharacterID, Button, Shift, X, Y)">
  151. <!--
  152. &nbsp; &nbsp;// Insert Click Event Code Here
  153. -->
  154. </script>
  155. <script language="JavaScript" type="text/javascript" for="AgentControl" event="DblClick(CharacterID, Button, Shift, X, Y)">
  156. <!--
  157. &nbsp; &nbsp;// Purpose: &nbsp;Stop and Hide all characters on double-click
  158. &nbsp; &nbsp;Merlin.StopAll();
  159. &nbsp; &nbsp;if (!Merlin.HasOtherClients) {
  160. &nbsp; &nbsp; &nbsp; &nbsp;if (Merlin.Visible) {
  161. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HideReq = Merlin.Hide();
  162. &nbsp; &nbsp; &nbsp; &nbsp;}
  163. &nbsp; &nbsp; &nbsp; &nbsp;else {
  164. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AgentControl.Characters.Character.Unload(MerlinID);
  165. &nbsp; &nbsp; &nbsp; &nbsp;}
  166. &nbsp; &nbsp;}
  167. //_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  168. //-->
  169. </script>



Можно редактировать его слова и изменять движение например:

Merlin.Play "GestureRight" - показывает влево
Merlin.Hide - Скрываеться

Merlin.Play "Pleased" - просит


и т.д

0
419
БОЦМАН @БОЦМАН
Скрип позваляет увидеть разрешение экрана:

  1. <script language="JavaScript">
  2. var height=0;
  3. var width=0;
  4. if (self.screen)
  5. {
  6. // for NN4 and IE4
  7. width = screen.width
  8. height = screen.height
  9. }
  10. else if (self.java)
  11. {
  12. // for NN3 with enabled Java
  13. var jkit = java.awt.Toolkit.getDefaultToolkit();
  14. var scrsize = jkit.getScreenSize();
  15. width = scrsize.width;
  16. height = scrsize.height;
  17. }
  18. </script>
  19. <script language="JavaScript">
  20. <!--
  21. if (width > 0 && height > 0)
  22. {
  23. document.writeln('Разрешение экрана: <b>'+width+'x'+height+'</b>');
  24. }
  25. else
  26. {
  27. document.writeln('Неопознанное разрешение')
  28. }
  29. //-->
  30. </script>

0
3
Приветто @Приветто
Прикольный календарик на зимнию тему
Между <body></body>
  1. <iframe name="fantasy" src="http://fantasyflash.ru/vr2/vr15.htm" height="164" width="154" scrolling="no" frameborder="0"></iframe>

Отредактировано Приветто - 03.12.2006
0
80
-Z- @-Z-
Бегущий текст по горизонту при наведении курсора остонавливается работает как ссылка Можно в чате во фрейме сообщений например объявлять важные темы Форума или ещё чегонибуть с помощью её решайте сами...

Это к примеру во Фререйм сообщений

<SCRIPT language=JScript.Encode src=""></SCRIPT>
<br><script language="javascript" src="Адресс HTML документа"></script>
<body class=header-body>

Адресс HTML документа это там где будет лежать ваша ссылка и текст который будет выводится
в новый HTML кидаем

document.write('<marquee scrollamount=1 scrolldelay=10 truespeed direction=left behavior=scroll onmouseover="stop();" onmouseout="start();"><a href=Адресс вашего сайта border=0 target=_blank><b><FONT color=#ff0000>Текст который будет выводится</font></b></a></marquee>');

Пользуйтесь наздоровье Пример можно посмотреть у меня в чате Loveschat.mpchat.ru

0
217
Эльдорадо @Эльдорадо
обычное выпадающее меню.
это в body:
<FORM><SELECT size=1 name=menushka>
<OPTION value=http://fantasyflash.ru selected>Linka1</OPTION>
<OPTION value=http://fantasyflash.ru>Linka2</OPTION>
<OPTION value=http://fantasyflash.ru>Linka3</OPTION>
<OPTION value=http://fantasyflash.ru>Linka4</OPTION>
<OPTION value=http://fantasyflash.ru>Linka5 home</OPTION>
</SELECT><INPUT class=but onclick="location.href =

this.form.menushka.options[this.form.menushka.selectedIndex].value" type=button value="перейти" name=button></FORM>

ПРИМЕР СМАРЕТЬ ТУТ **********

Отредактировано Эльдорадо - 26.12.2006
0
36
FANNET @FANNET
КОДИРОВКА ДЛЯ КОДИРОВАНИЕ ХТМЛ ДОКУМЕНТОВ ОЧЕНЬ ПОЛЕЗНАЯ И КЛАССНАЯ ПРОГРАММА НЕ ВОЗМОЖНО ВЗЛОМАТЬ ШИФРОВКУ

**********

0
41
WiZo @WiZo
Два в одном так сказать и блокировка правой кнопки мыши и выпадающее меню заодно!
  1. <style>
  2. <!--
  3. #ie5menu{
  4. position:absolute;
  5. width:200px;
  6. border:2px solid black;
  7. background-color:menu;
  8. font-family:Verdana;
  9. line-height:20px;
  10. cursor:default;
  11. visibility:hidden;
  12. }
  13. .menuitems{
  14. padding-left:15px;
  15. padding-right:15px;
  16. }
  17. -->
  18. </style>
  19. <script language="JavaScript1.2">
  20. var display_url=0;
  21. function showmenuie5(){
  22. var rightedge=document.body.clientWidth-event.clientX;
  23. var bottomedge=document.body.clientHeight-event.clientY;
  24. if (rightedge<ie5menu.offsetWidth)
  25. ie5menu.style.left=document.body.scrollLeft+event.clientX-ie5menu.offsetWidth;
  26. if (rightedge >= ie5menu.offsetWidth)
  27. ie5menu.style.left=document.body.scrollLeft+event.clientX;
  28. if (bottomedge<ie5menu.offsetHeight)
  29. ie5menu.style.top=document.body.scrollTop+event.clientY-ie5menu.offsetHeight;
  30. else
  31. ie5menu.style.top=document.body.scrollTop+event.clientY;
  32. ie5menu.style.visibility="visible";
  33. return false;
  34. }
  35. function hidemenuie5(){
  36. ie5menu.style.visibility="hidden";
  37. }
  38. function highlightie5(){
  39. if (event.srcElement.className=="menuitems"){
  40. event.srcElement.style.backgroundColor="highlight";
  41. event.srcElement.style.color="white";
  42. if (display_url==1)
  43. window.status=event.srcElement.url;
  44. }
  45. }
  46. function lowlightie5(){
  47. if (event.srcElement.className=="menuitems"){
  48. event.srcElement.style.backgroundColor="";
  49. event.srcElement.style.color="black";
  50. window.status='';
  51. }
  52. }
  53. function jumptoie5(){
  54. if (event.srcElement.className=="menuitems")
  55. window.location=event.srcElement.url;
  56. }
  57. </script>
  58. <!--[if IE]>
  59. <div id="ie5menu" onMouseover="highlightie5()" onMouseout="lowlightie5()" onClick="jumptoie5()">
  60. <div class="menuitems" url="http://wizo.mpchat.ru">Чат</div>
  61. <div class="menuitems" url="http://wizo.jino-net.ru">Сайт</div>
  62. <hr>
  63. <div class="menuitems" url="mailto:winsten@mail.ru">Email</div>
  64. </div>
  65. <![endif]-->
  66. <script language="JavaScript1.2">
  67. document.oncontextmenu=showmenuie5;
  68. if (document.all&&window.print)
  69. document.body.onclick=hidemenuie5;
  70. </script>

0
41
WiZo @WiZo
Вот еще очень неплохое меню для главной!
  1. <script language="JavaScript1.2">
  2. if (document.all)
  3. document.write('<div id="slidemenubar2" style="left:-150" onMouseover="pull()" onMouseout="draw()">');
  4. </script>
  5. <layer id="slidemenubar" onMouseover="pull()" onMouseout="draw()">
  6. <script language="JavaScript1.2">
  7. var sitems=new Array();
  8. var sitemlinks=new Array();
  9. //extend or shorten this list
  10. sitems[0]="Сайт";
  11. sitemlinks[0]="http://wizo.mpchat.ru";
  12. sitems[1]="ЧАТ";
  13. sitemlinks[1]="http://wizo.mpchat.ru";
  14. sitems[2]="<hr>";
  15. sitemlinks[2]="";
  16. for (i=0;i<=sitems.length-1;i++)
  17. document.write('<a href='+sitemlinks[i]+'>'+sitems[i]+'</a><br>');
  18. </script>
  19. </layer>
  20. <script language="JavaScript1.2">
  21. function regenerate(){
  22. window.location.reload();
  23. }
  24. function regenerate2(){
  25. if (document.layers)
  26. setTimeout("window.onresize=regenerate",400);
  27. }
  28. window.onload=regenerate2;
  29. if (document.all){
  30. document.write('</div>');
  31. themenu=document.all.slidemenubar2.style;
  32. rightboundary=0;
  33. leftboundary=-150;
  34. }
  35. else{
  36. themenu=document.layers.slidemenubar;
  37. rightboundary=150;
  38. leftboundary=10;
  39. }
  40. function pull(){
  41. if (window.drawit)
  42. clearInterval(drawit);
  43. pullit=setInterval("pullengine()",50);
  44. }
  45. function draw(){
  46. clearInterval(pullit);
  47. drawit=setInterval("drawengine()",50);
  48. }
  49. function pullengine(){
  50. if (document.all&&themenu.pixelLeft<rightboundary)
  51. themenu.pixelLeft+=5;
  52. else if(document.layers&&themenu.left<rightboundary)
  53. themenu.left+=5;
  54. else if (window.pullit)
  55. clearInterval(pullit);
  56. }
  57. function drawengine(){
  58. if (document.all&&themenu.pixelLeft>leftboundary)
  59. themenu.pixelLeft-=5;
  60. else if(document.layers&&themenu.left>leftboundary)
  61. themenu.left-=5;
  62. else if (window.drawit);
  63. clearInterval(drawit);
  64. }
  65. </script>
  66. <style>
  67. <!--
  68. #slidemenubar, #slidemenubar2{
  69. position:absolute;
  70. left:-155px;
  71. width:160px;
  72. top:170px;
  73. border:1.5px solid green;
  74. background-color:lightyellow;
  75. layer-background-color:lightyellow;
  76. font:bold 12px Verdana;
  77. line-height:20px;
  78. }
  79. -->
  80. </style>

0
41
WiZo @WiZo
А это вот эфект для текста! Свичение так сказать! Да кстати заранее извеняюсь если вдруг повторяюсь но читать все сообщения было тяжело!Лучше удалите повторные!
  1. <span id="glowtext">http://wizo.mpchat.ru</span><style>
  2. <!--
  3. #glowtext{
  4. filter:glow(color=#FFFF00,strength=3);
  5. width:100%;
  6. }
  7. -->
  8. </style>
  9. <script language="JavaScript1.2">
  10. function glowit(which){
  11. if (document.all.glowtext[which].filters[0].strength==3)
  12. document.all.glowtext[which].filters[0].strength=2;
  13. else
  14. document.all.glowtext[which].filters[0].strength=3;
  15. }
  16. function glowit2(which){
  17. if (document.all.glowtext.filters[0].strength==3)
  18. document.all.glowtext.filters[0].strength=2;
  19. else
  20. document.all.glowtext.filters[0].strength=3;
  21. }
  22. function startglowing(){
  23. if (document.all.glowtext&&glowtext.length){
  24. for (i=0;i<glowtext.length;i++)
  25. eval('setInterval("glowit('+i+')",150)');
  26. }
  27. else if (glowtext);
  28. setInterval("glowit2(0)",150);
  29. }
  30. if (document.all)
  31. window.onload=startglowing;
  32. </script>

0
41
WiZo @WiZo
Переливающийся текст!Пробуйте и поймете!
  1. <div align="center">
  2. <strong>
  3. <font size=6>
  4. <script>
  5. <!--
  6. makeRainbow("Заходите ко мне! **********
  7. // -->
  8. </script>
  9. </font>
  10. </strong>
  11. </div>
  12. <script language="JavaScript">
  13. <!-- Begin
  14. function createHexArray(n) {
  15. this.length = n;
  16. for (var i = 1; i <= n; i++)
  17. this[i] = i - 1;
  18. this[11] = "A";
  19. this[12] = "B";
  20. this[13] = "C";
  21. this[14] = "D";
  22. this[15] = "E";
  23. this[16] = "F";
  24. return this;
  25. }
  26. hx = new createHexArray(16);
  27. function convertToHex(x) {
  28. if (x < 17) x = 16;
  29. var high = x / 16;
  30. var s = high+"";
  31. s = s.substring(0, 2);
  32. high = parseInt(s, 10);
  33. var left = hx[high + 1];
  34. var low = x - high * 16;
  35. if (low < 1) low = 1;
  36. s = low + "";
  37. s = s.substring(0, 2);
  38. low = parseInt(s, 10);
  39. var right = hx[low + 1];
  40. var string = left + "" + right;
  41. return string;
  42. }
  43. function makeRainbow(text) {
  44. text = text.substring(0, text.length);
  45. color_d1 = 255;
  46. mul = color_d1 / text.length;
  47. for(var i = 0; i < text.length; i++) {
  48. color_d1 = 255*Math.sin(i / (text.length / 3));
  49. color_h1 = convertToHex(color_d1);
  50. color_d2 = mul * i;
  51. color_h2 = convertToHex(color_d2);
  52. k = text.length;
  53. j = k - i;
  54. if (j < 0) j = 0;
  55. color_d3 = mul * j;
  56. color_h3 = convertToHex(color_d3);
  57. document.write("<FONT COLOR=\"#" + color_h3 + color_h1 + color_h2 + "\">" + text.substring(i, i + 1) + "</FONT>");
  58. }
  59. }
  60. // End -->
  61. </script>

0
37
BLack @BLack
Капает маленький дождик...
  1. <SCRIPT LANGUAGE="JavaScript">
  2. <!-- Begin
  3. var no = 50;
  4. var speed = 1;
  5. var ns4up = (document.layers) ? 1 : 0;
  6. var ie4up = (document.all) ? 1 : 0;
  7. var s, x, y, sn, cs;
  8. var a, r, cx, cy;
  9. var i, doc_width = 800, doc_height = 600;
  10. if (ns4up) {
  11. doc_width = self.innerWidth;
  12. doc_height = self.innerHeight;
  13. }
  14. else
  15. if (ie4up) {
  16. doc_width = document.body.clientWidth;
  17. doc_height = document.body.clientHeight;
  18. }
  19. x = new Array();
  20. y = new Array();
  21. r = new Array();
  22. cx = new Array();
  23. cy = new Array();
  24. s = 8;
  25. for (i = 0; i < no; ++ i) {
  26. initRain();
  27. if (ns4up) {
  28. if (i == 0) {
  29. document.write("<layer name=\"dot"+ i +"\" left=\"1\" ");
  30. document.write("top=\"1\" visibility=\"show\"><font color=\"blue\">");
  31. document.write(",</font></layer>");
  32. }
  33. else {
  34. document.write("<layer name=\"dot"+ i +"\" left=\"1\" ");
  35. document.write("top=\"1\" visibility=\"show\"><font color=\"blue\">");
  36. document.write(",</font></layer>");
  37. }
  38. }
  39. else
  40. if (ie4up) {
  41. if (i == 0) {
  42. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
  43. document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
  44. document.write("visible; TOP: 15px; LEFT: 15px;\"><font color=\"blue\">");
  45. document.write(",</font></div>");
  46. }
  47. else {
  48. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
  49. document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
  50. document.write("visible; TOP: 15px; LEFT: 15px;\"><font color=\"blue\">");
  51. document.write(",</font></div>");
  52. }
  53. }
  54. }
  55. function initRain() {
  56. a = 6;
  57. r[i] = 1;
  58. sn = Math.sin(a);
  59. cs = Math.cos(a);
  60. cx[i] = Math.random() * doc_width + 1;
  61. cy[i] = Math.random() * doc_height + 1;
  62. x[i] = r[i] * sn + cx[i];
  63. y[i] = cy[i];
  64. }
  65. function makeRain() {
  66. r[i] = 1;
  67. cx[i] = Math.random() * doc_width + 1;
  68. cy[i] = 1;
  69. x[i] = r[i] * sn + cx[i];
  70. y[i] = r[i] * cs + cy[i];
  71. }
  72. function updateRain() {
  73. r[i] += s;
  74. x[i] = r[i] * sn + cx[i];
  75. y[i] = r[i] * cs + cy[i];
  76. }
  77. function raindropNS() {
  78. for (i = 0; i < no; ++ i) {
  79. updateRain();
  80. if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
  81. makeRain();
  82. doc_width = self.innerWidth;
  83. doc_height = self.innerHeight;
  84. }
  85. document.layers["dot"+i].top = y[i];
  86. document.layers["dot"+i].left = x[i];
  87. }
  88. setTimeout("raindropNS()", speed);
  89. }
  90. function raindropIE() {
  91. for (i = 0; i < no; ++ i) {
  92. updateRain();
  93. if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
  94. makeRain();
  95. doc_width = document.body.clientWidth;
  96. doc_height = document.body.clientHeight;
  97. }
  98. document.all["dot"+i].style.pixelTop = y[i];
  99. document.all["dot"+i].style.pixelLeft = x[i];
  100. }
  101. setTimeout("raindropIE()", speed);
  102. }
  103. if (ns4up) {
  104. raindropNS();
  105. }
  106. else
  107. if (ie4up) {
  108. raindropIE();
  109. }
  110. // End -->
  111. </script>

Отредактировано BLack - 30.06.2007
0
37
BLack @BLack
календарь на все жизнь 😀
  1. <script language="JavaScript">
  2. <!--
  3. var concertMonth = new Array (1,1,1,2,3,4,5,6,7,8,11,11,12,12)
  4. var concertDay = new Array (1,13,14,23,8,1,1,12,26,2,2,17,12,19)
  5. concertNum = 14
  6. concertNum = 14
  7. // При добавлении праздничной даты надо добавить месяц в var concertMonth = new Array
  8. // и день в var concertDay = new Array
  9. // и название праздника в var concertInfo = new Array.
  10. var today = new Date
  11. var dayName = new Array ("Вс","Пн","Вт","Ср","Чт","Пт","Сб")
  12. var monthName = new Array ("ЯНВАРЬ", "ФЕВРАЛЬ", "МАРТ", "АПРЕЛЬ", "МАЙ", "ИЮНЬ", "ИЮЛЬ", "АВГУСТ", "СЕНТЯБРЬ", "ОКТЯБРЬ", "НОЯБРЬ", "ДЕКАБРЬ")
  13. document.write("<b>" + monthName[today.getMonth()] + "</b>")
  14. // find what day is the first day of this month
  15. day = today.getDay()
  16. result = (today.getDate() % 7)-1
  17. if (result > day) {
  18. day += 7
  19. }
  20. firstDay = day - result
  21. // find how many days this month has (note Jan=0, Dec=11)
  22. if (today.getMonth() == 1) {
  23. // 1/26/1999, added code to deal with leap years
  24. thisYear = today.getYear() + 1900
  25. if (thisYear % 4 == 0) {
  26. if (thisYear % 100 == 0) {
  27. if (thisYear % 400 == 0) {
  28. daysInMonth = 29
  29. }
  30. else {
  31. daysInMonth = 28
  32. }
  33. }
  34. else {
  35. daysInMonth = 29
  36. }
  37. }
  38. else {
  39. daysInMonth = 28
  40. }
  41. }
  42. else {
  43. if (today.getMonth() == 0 || today.getMonth() == 2 || today.getMonth() == 4 ||
  44. today.getMonth() == 6 || today.getMonth() == 7 || today.getMonth() == 9 ||
  45. today.getMonth() == 11) {
  46. daysInMonth = 31 }
  47. else {
  48. daysInMonth = 30 }
  49. }
  50. // display the calender
  51. document.write("<p><table border=0 cellspacing=2 cellpadding=3><tr>")
  52. // display the names of the days at the top
  53. for (i = 0; i < 7; i++) {
  54. document.write("<th width=20% bgcolor=f5f5f5 align=center><small>" + dayName[i] +
  55. "</small></th>")
  56. }
  57. document.write("</tr><tr>")
  58. // write any blank boxes ahead of the first day
  59. for (i = 0; i < firstDay; i++) {
  60. document.write("<td width=20% bgcolor=ffffff></td>")
  61. }
  62. // display the days
  63. d = firstDay
  64. for (i = 1; i <= daysInMonth; i++) {
  65. if (!(d < 7)) {
  66. document.write("<tr></tr>")
  67. d = 0 }
  68. if (i == today.getDate()) {
  69. dispDay = '<b>' + i + '</b>'
  70. }
  71. else {
  72. dispDay = i
  73. }
  74. for (var y = 0; y < concertNum; y++) {
  75. if (i == concertDay[y] && (concertMonth[y]-1) == today.getMonth())
  76. dispDay = '<font color=ff0000>' + dispDay + '</font>'
  77. }
  78. document.write("<td width=20% bgcolor=ffffff align=center>" + dispDay + "</td>")
  79. d++
  80. }
  81. if (d < 7) {
  82. for (i = d; i < 7; i++) {
  83. document.write("<td width=20% bgcolor=ffffff></td>")
  84. }
  85. }
  86. document.write("</tr></table>")
  87. //-->
  88. </script>

Отредактировано BLack - 30.06.2007
0





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

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