Единый форум поддержки

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » Единый форум поддержки » Корзина » Новогодние скрипты


Новогодние скрипты

Сообщений 1 страница 20 из 47

1

Приближается Новый год, даайте соберём как можно больше скриптов....

Здесь только выкладываем скрипты!
Никакого флуда, и никаких вопросов куда ставить.

ТОЛЬКО СКРИПТЫ!!!!! И НИКАКОГО ФЛУДА!

Об этом всём спрашивайте тут:

http://forum.mybb.ru/viewtopic.php?pid=174903#p174903

Выкладываем рабочие скрипты, которые были протестированы!

Несоблюдение правил в этой теме караются баном!

Не забывайте указывать куда ставить скрипт "ХТМЛ верх", "ХТМЛ низ", "Объявление", "Форма ответа"

Отредактировано Руслан (Ср, 21 Ноя 2007 21:36:31)

0

2

Снег 5 видов

Если снег не оторбражается,вот картинка

1.

Код:
<script language="JavaScript1.2">
 grphcs=new Array(2)
Image0=new Image();
Image0.src=grphcs[0]="http://fantasyflash.ru/script/web/image/sneg1.gif";
Image1=new Image();
Image1.src=grphcs[1]="http://fantasyflash.ru/script/web/image/sneg1.gif";
  Amount=25; 
Ypos=new Array();
Xpos=new Array();
Speed=new Array();
Step=new Array();
Cstep=new Array();
ns=(document.layers)?1:0;
ns6=(document.getElementById&&!document.all)?1:0;
 if (ns){
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];
document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
}
}
else{
document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];//osw
document.write('<img id="si'+i+'" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
}
document.write('</div></div>');
}
WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight;
WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth;//fantasyflash.ru
for (i=0; i < Amount; i++){                                                                
 Ypos[i] = Math.round(Math.random()*WinHeight);
 Xpos[i] = Math.round(Math.random()*WinWidth);
 Speed[i]= Math.random()*5+3;
 Cstep[i]=0;
 Step[i]=Math.random()*0.1+0.05;
}
function fall(){
var WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight;
var WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth;
var hscrll=(ns||ns6)?window.pageYOffset:document.body.scrollTop;
var wscrll=(ns||ns6)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < Amount; i++){
sy = Speed[i]*Math.sin(90*Math.PI/180);
sx = Speed[i]*Math.cos(Cstep[i]);
Ypos[i]+=sy;
Xpos[i]+=sx; 
if (Ypos[i] > WinHeight){
Ypos[i]=-60;
Xpos[i]=Math.round(Math.random()*WinWidth);
Speed[i]=Math.random()*5+3;
}
if (ns){
document.layers['sn'+i].left=Xpos[i];
document.layers['sn'+i].top=Ypos[i]+hscrll;
}
else if (ns6){
document.getElementById("si"+i).style.left=Math.min(WinWidth,Xpos[i]);
document.getElementById("si"+i).style.top=Ypos[i]+hscrll;
}
else{
eval("document.all.si"+i).style.left=Xpos[i];
eval("document.all.si"+i).style.top=Ypos[i]+hscrll;
} 
Cstep[i]+=Step[i];
}
setTimeout('fall()',20);
}
 window.onload=fall
//-->
</script>

2.

Код:
<SCRIPT language=JavaScript>
<!--
Amount=15; 

Image0=new Image();
Image0.src="http://fantasyflash.ru/script/web/image/sneg1.gif";

grphcs=new Array(1)
grphcs[0]="http://fantasyflash.ru/script/web/image/sneg1.gif"

Ypos=new Array();
Xpos=new Array();
Speed=new Array();
Step=new Array();
Cstep=new Array();
ns=(document.layers)?1:0;
if (ns){
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];
document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
}
}
else{
document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];
document.write('<img id="si" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
}
document.write('</div></div>');
}
WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
for (i=0; i < Amount; i++){
 Ypos[i] = Math.round(Math.random()*WinHeight);
 Xpos[i] = Math.round(Math.random()*WinWidth);
 Speed[i]= Math.random()*3+2;
 Cstep[i]=0;//osw
 Step[i]=Math.random()*0.1+0.05;
}
function fall(){
var WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
var WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
var hscrll=(document.layers)?window.pageYOffset:document.body.scrollTop;
var wscrll=(document.layers)?window.pageXOffset:document.body.scrollLeft;//fantasyflash.ru 
for (i=0; i < Amount; i++){
sy = Speed[i]*Math.sin(90*Math.PI/180);
sx = Speed[i]*Math.cos(Cstep[i]);
Ypos[i]+=sy;
Xpos[i]+=sx;
if (Ypos[i] > WinHeight){
Ypos[i]=-60;
Xpos[i]=Math.round(Math.random()*WinWidth);
Speed[i]=Math.random()*5+2;
}
if (ns){
document.layers['sn'+i].left=Xpos[i];
document.layers['sn'+i].top=Ypos[i]+hscrll;
}
else{
si[i].style.pixelLeft=Xpos[i];//osw
si[i].style.pixelTop=Ypos[i]+hscrll;
}
Cstep[i]+=Step[i];
}
setTimeout('fall()',50);
}
fall()
//-->
</SCRIPT>

3. Не забываем загрузить функцию fall() внутрь тега body!

Код:
<SCRIPT language=JavaScript>
Amount=20; 
Image0=new Image();
Image0.src="http://fantasyflash.ru/script/web/image/sneg2.gif";
Image1=new Image();
Image1.src="http://fantasyflash.ru/script/web/image/sneg2.gif";
Image2=new Image();
Image2.src="http://fantasyflash.ru/script/web/image/sneg2.gif";
Image3=new Image();
Image3.src="http://fantasyflash.ru/script/web/image/sneg2.gif";
Image4=new Image();
Image4.src="http://fantasyflash.ru/script/web/image/sneg2.gif";
grphcs=new Array(5)
grphcs[0]="http://fantasyflash.ru/script/web/image/sneg2.gif"
grphcs[1]="http://fantasyflash.ru/script/web/image/sneg2.gif"
grphcs[2]="http://fantasyflash.ru/script/web/image/sneg2.gif"
grphcs[3]="http://fantasyflash.ru/script/web/image/sneg2.gif"
grphcs[4]="http://fantasyflash.ru/script/web/image/sneg2.gif"
grphcs[5]="http://fantasyflash.ru/script/web/image/sneg2.gif"
grphcs[6]="http://fantasyflash.ru/script/web/image/sneg2.gif"
Ypos=new Array();
Xpos=new Array();
Speed=new Array();
Step=new Array();
Cstep=new Array();
Ypos=new Array();
ns=(document.layers)?1:0;
if (ns){
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];
document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
}
}
else{
document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];//fantasyflash.ru
document.write('<img id="si" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
}
document.write('</div></div>');
}
WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
for (i=0; i < Amount; i++){                                                                
 Ypos[i] = Math.round(Math.random()*WinHeight);
 Xpos[i] = Math.round(Math.random()*WinWidth);
 Speed[i]= Math.random()*3+2;
 Cstep[i]=0;
 Step[i]=Math.random()*0.1+0.05;
}
function fall(){
var WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
var WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
var hscrll=(document.layers)?window.pageYOffset:document.body.scrollTop;
var wscrll=(document.layers)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < Amount; i++){
sy = Speed[i]*Math.sin(90*Math.PI/180);
sx = Speed[i]*Math.cos(Cstep[i]);//osw
Ypos[i]+=sy;
Xpos[i]+=sx; 
if (Ypos[i] > WinHeight){
Ypos[i]=-60;
Xpos[i]=Math.round(Math.random()*WinWidth);
Speed[i]=Math.random()*5+2;
}
if (ns){
document.layers['sn'+i].left=Xpos[i];
document.layers['sn'+i].top=Ypos[i]+hscrll;
}
else{
si[i].style.pixelLeft=Xpos[i];
si[i].style.pixelTop=Ypos[i]+hscrll;
} 
Cstep[i]+=Step[i];
}
setTimeout('fall()',20);
}
</SCRIPT>

4.

Код:
<SCRIPT language=JavaScript>
Amount=25; 

Image0=new Image();
Image0.src="http://fantasyflash.ru/script/web/image/sneg3.gif";

grphcs=new Array(1)
grphcs[0]="http://fantasyflash.ru/script/web/image/sneg3.gif"

Ypos=new Array();
Xpos=new Array();
Speed=new Array();
Step=new Array();
Cstep=new Array();
ns=(document.layers)?1:0;
if (ns){
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];
document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
}
}
else{
document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];
document.write('<img id="si" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
}
document.write('</div></div>');
}
WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
for (i=0; i < Amount; i++){
 Ypos[i] = Math.round(Math.random()*WinHeight);
 Xpos[i] = Math.round(Math.random()*WinWidth);
 Speed[i]= Math.random()*3+2;
 Cstep[i]=0;//osw
 Step[i]=Math.random()*0.1+0.05;
}//fantasyflash.ru
function fall(){
var WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
var WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
var hscrll=(document.layers)?window.pageYOffset:document.body.scrollTop;
var wscrll=(document.layers)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < Amount; i++){
sy = Speed[i]*Math.sin(90*Math.PI/180);
sx = Speed[i]*Math.cos(Cstep[i]);
Ypos[i]+=sy;//osw
Xpos[i]+=sx;
if (Ypos[i] > WinHeight){
Ypos[i]=-60;
Xpos[i]=Math.round(Math.random()*WinWidth);
Speed[i]=Math.random()*5+2;
}
if (ns){
document.layers['sn'+i].left=Xpos[i];
document.layers['sn'+i].top=Ypos[i]+hscrll;
}
else{
si[i].style.pixelLeft=Xpos[i];
si[i].style.pixelTop=Ypos[i]+hscrll;
}
Cstep[i]+=Step[i];
}
setTimeout('fall()',35);
}
fall()
</SCRIPT>

5.

Код:
<SCRIPT language=JavaScript1.2>
var no = 25; 
var speed = 6; 
var snowflake = "http://fantasyflash.ru/script/web/image/sneg1.gif";

var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp; 
var am, stx, sty; 
var i, doc_width = 800, doc_height = 600;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i) {  
dx[i] = 0;         
xp[i] = Math.random()*(doc_width-50); 
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20;//osw         
stx[i] = 0.02 + Math.random()/10; 
sty[i] = 0.7 + Math.random();   
if (ns4up) {                  
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
   }
} else if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
      }
   }
}
function snowNS() { 
for (i = 0; i < no; ++ i) {  
yp[i] += sty[i];//osw
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowIE() { 
for (i = 0; i < no; ++ i) { 
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;//fantasyflash.ru
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx[i] += stx[i];
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowIE()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up) {
snowIE();
}
</SCRIPT>

0

3

Зимнний календарь   Источник календаря

Код:
<iframe name="fantasy" src="http://fantasyflash.ru/vr2/vr2.htm" height="164" width="154" scrolling="no" frameborder="0"></iframe>

Размер: 154 x 150 пикселей анимир. (8 кадров)
Вид:

Отредактировано blind (Чт, 22 Ноя 2007 22:30:51)

0

4

Линеечка показывающяя сколько осталось до нового года
Если же хотите создать свою то вам - сюда

Пример:
http://line.romanticcollection.ru/new/11_48b_386D1950_RdoPRnovogoPgodaPostalosxP_8.gif

Для вставки в форум, выделите и скопируйте строчку ниже и перенесите ее себе в подпись:

Код:
[url=http://line.romanticcollection.ru][img]http://line.romanticcollection.ru/new/11_48b_386D1950_RdoPRnovogoPgodaPostalosxP_8.gif[/img][/url]

Для вставки в код HTML, выделите и скопируйте строчку ниже и перенесите ее в код своей страницы:

Код:
<a href="http://line.romanticcollection.ru" target="_blank"><img src="http://line.romanticcollection.ru/new/11_48b_386D1950_RdoPRnovogoPgodaPostalosxP_8.gif" border="0" /></a>

Работоспособность

Отредактировано blind (Чт, 22 Ноя 2007 23:38:47)

0

5

Скрипт "До Нового года..."   Источник скрипта

Скрипт выводит дни до наступления нового года. Минуты и Секунды не стал делать :)
Кому надо берите. Куда вставлять не спрашивайте, думаю сами догадаетесть. Я, например, прям в тему влупил.

ПРОВЕРЕННО!

Код:
<html>
<head>
<title>Скрипт показывает сколько дней осталось до нового года</title>
</head>
<body>
<script language="JavaScript1.2"> 
//Script courtesy of Sharon Gartenberg's Date Countdown
//JavaScript generator under the GNU General Public License
var today = new Date;
var Future0 = new Date;
ThisYear = 2007;

var FutureMonth = 11;
var FutureDate = 31;
var faraevent = "";

Future0.setMonth(FutureMonth, FutureDate);
Future0.setFullYear(ThisYear);

today1 = Date.parse(today);
future1 = Date.parse(Future0);
secleft = future1 - today1;
miliday = 24 * 60 * 60 * 1000;
daysleft = secleft/miliday;
daysleftint = Math.round(daysleft);

if (daysleftint > 1)
document.write("<font color=#ff0000>До нового года осталось ", daysleftint, " дней", faraevent , "!</font>");
else if (daysleftint == 1)
document.write(faraevent, " is tomorrow! ");
else if (today1 == future1)
document.write(faraevent, " is today! ");
</script> 
</body>
</html>

Отредактировано blind (Чт, 22 Ноя 2007 23:39:28)

0

6

Новогодняя музыка на форум    Источник скрипта

Код:
<center><embed src='http://fantasyflash.ru/music/midi/midi31.mid' width=77 height=27 loop=-1 autostart=true border=0></center>

0

7

Новогодний фон   Источник картинки

Код:
<style type="text/css">
HTML, BODY {background-image: url("http://forumupload.ru/uploads/0000/3d/68/1681-1.jpg")!important; background-repeat: repeat !important;}
</style>

Картинка фона:

Отредактировано blind (Чт, 22 Ноя 2007 21:13:25)

0

8

Новогодние ранги

http://i017.radikal.ru/0711/28/c920e86c8d67.gif
http://i012.radikal.ru/0711/1f/b937853a47a0.gif
http://i042.radikal.ru/0711/fc/9d70ee76c318.gif
http://i029.radikal.ru/0711/6e/a45f109bdeec.gif
http://i009.radikal.ru/0711/4e/1e64aa116384.gif
http://i011.radikal.ru/0711/be/702f4a5e6aab.gif
http://i035.radikal.ru/0711/f9/ff02faca7949.gif
http://i020.radikal.ru/0711/18/fe32957da357.gif
http://i046.radikal.ru/0711/5b/57e791a50447.gif
http://i008.radikal.ru/0711/51/f2ec993b806b.gif
http://i013.radikal.ru/0711/10/03ad2e00ce72.gif
http://i016.radikal.ru/0711/2d/2a578e79b5e2.gif
http://i001.radikal.ru/0711/6c/5a0dcf5406e2.gif
http://i046.radikal.ru/0711/f0/8d7099b7bcb1.gif
http://i002.radikal.ru/0711/43/159dc4abed6e.gif
http://i027.radikal.ru/0711/03/96635c8f541b.gif
http://i007.radikal.ru/0711/0a/b0dd3c815618.gif
http://i011.radikal.ru/0711/58/62a94062c7be.gif
http://i010.radikal.ru/0711/0f/f7f9541dda17.gif

Отредактировано blind (Пт, 23 Ноя 2007 23:44:27)

0

9

Новогодние стили   Источник Mybb

Mybb Snowman
Mybb Christmas Party
Mybb Cold Winter
Mybb Invision Winter
Mybb Winter
Mybb Hot Winter
Mybb Snow Deer
Mybb Time Snow
Mybb Winter Bench
Mybb Winter Woodland
Mybb Happy Snowman
Mybb Mountain Road
Mybb Polar Deer
Mybb Santa Pigs
Mybb Ski Jump

Отредактировано blind (Чт, 22 Ноя 2007 21:47:20)

0

10

Новогодние смайлы      Источник смайлов

http://rmchat.ru/smile/new_year/400.gif
http://rmchat.ru/smile/new_year/401.gif
http://rmchat.ru/smile/new_year/402.gif
http://rmchat.ru/smile/new_year/403.gif
http://rmchat.ru/smile/new_year/404.gif
http://rmchat.ru/smile/new_year/405.gif
http://rmchat.ru/smile/new_year/406.gif
http://rmchat.ru/smile/new_year/407.gif
http://rmchat.ru/smile/new_year/408.gif
http://rmchat.ru/smile/new_year/409.gif
http://rmchat.ru/smile/new_year/410.gif
http://rmchat.ru/smile/new_year/411.gif
http://rmchat.ru/smile/new_year/412.gif
http://rmchat.ru/smile/new_year/413.gif
http://rmchat.ru/smile/new_year/414.gif

0

11

F e n i x 8 1 1
Переписал скрипт,пробуй.
Работоспособность - тут
P.S Модераторы выделите тему,плиз  :)

Отредактировано blind (Чт, 22 Ноя 2007 22:12:31)

0

12

Новогодние курсоры    Источник курсоров

1.

Код:
<STYLE>
BODY { cursor:url('http://fantasyflash.ru/cursor/cur/cursor134.ani');}</style>

2.

Код:
<STYLE>
BODY { cursor:url('http://fantasyflash.ru/cursor/cur/cursor135.ANI');}</style>

3.

Код:
<STYLE>
BODY { cursor:url('http://fantasyflash.ru/cursor/cur/cursor136.ani');}</style>

4.

Код:
<STYLE>
BODY { cursor:url('http://fantasyflash.ru/cursor/cur/cursor137.ani');}</style>

5.

Код:
<STYLE>
BODY { cursor:url('http://fantasyflash.ru/cursor/cur/cursor138.ani');}</style>

6.

Код:
<STYLE>
BODY { cursor:url('http://fantasyflash.ru/cursor/cur/cursor140.ani');}</style>

7.

Код:
<STYLE>
BODY { cursor:url('http://fantasyflash.ru/cursor/cur/cursor139.ani');}</style>

8.

Код:
<STYLE>
BODY { cursor:url('http://fantasyflash.ru/cursor/cur/cursor141.ani');}</style>

9.

Код:
<STYLE>
BODY { cursor:url('http://fantasyflash.ru/cursor/cur/cursor142.cur');}</style>

10.

Код:
<STYLE>
BODY { cursor:url('http://fantasyflash.ru/cursor/cur/cursor143.ani');}</style>

0

13

Новогодние мадали(награды)     Источник медалей
____

http://forumupload.ru/uploads/0000/20/be/3925-1.gif
____

http://forumupload.ru/uploads/0000/20/be/3924-1.gif
____

http://forumupload.ru/uploads/0000/20/be/3927-1.gif
____

http://forumupload.ru/uploads/0000/20/be/7030-1.gif
____

http://forumupload.ru/uploads/0000/20/be/12209-1.gif
____

http://forumupload.ru/uploads/0000/20/be/3926-1.gif
____

http://forumupload.ru/uploads/0000/20/be/12334-1.gif
____

http://forumupload.ru/uploads/0000/20/be/12334-3.gif
____

Как устоновить медали(награды)?

Отредактировано blind (Сб, 24 Ноя 2007 00:22:31)

0

14

Выложите на своём форуме прикольный тестик1и прикольный тестик2 на Новый год, и пусть все выкладывают свои ответы.

Отредактировано blind (Чт, 22 Ноя 2007 23:24:23)

0

15

В числах 20.12 я бы изменил приветствие,т.е надпись:
Привет, Admin. Ваш последний визит: Вчера 00:00:00. <изменить на> C наступающим новым годом, Admin. Ваш последний визит: Сегодня 00:00:00.

Код:
<script>
greet="С наступающим новым годом, "
str = document.getElementById("pun-status").innerHTML
pos = str.indexOf("Привет")
document.getElementById("pun-status").innerHTML=str.substring(0,pos)+greet+str.substring(pos+8,str.length-1)
</script>

Работоспособность

Отредактировано blind (Чт, 22 Ноя 2007 23:28:13)

0

16

Снег на форуме - скрипты

0

17

Предупреждаю последний раз всех!
Тут выкладываются ТОЛЬКО скрипты,
ни картинки, ни баннеры, ничего!
Кроме скриптов!

Ещё одно нарушение, не важно, первое оно или нет.
Аккаунт будет блокирован!

+1

18

Lord_Zolo

Вопросы по скриптам задаются тут!

0

19

Колокольчик! ^_^

[взломанный сайт]

+1

20

скрипт до нового года осталось столько то дней и столько то минут - дата и минуты уже установлены,так что ничего менять не надо..

<html>
<head>
<title>Скрипт выводит время до события (праздника).</title>
<script language="JavaScript"><!--
function cntdown1(){
today = new Date()
nextEVENT = new Date("January 1, 2008")
msPerDay = 24 * 60 * 60 * 1000 ;daysLeft = (nextEVENT.getTime() - today.getTime()) / msPerDay;daysLeft = Math.round(daysLeft);document.write("До 2008 года осталось <FONT COLOR=\"#ff0000\">" + daysLeft + " дней(я) - </FONT>") ;
minutesLeft=(nextEVENT.getTime() - today.getTime()) / 60000;
minutesLeft = Math.round(minutesLeft);
document.write("Или точнее -  <FONT COLOR=\"#ff0000\">" + minutesLeft + " минут(ы)</FONT>") ;
}//--></script>
</head>
<body>
<script>cntdown1()</script>
</body>
</html>

ставить HTML - верх(по крайней мере у меня там стоит)можно в Объявления...

Отредактировано _Я_Не_МиЛаЯ_ (Чт, 29 Ноя 2007 23:19:14)

0


Вы здесь » Единый форум поддержки » Корзина » Новогодние скрипты