Форум поддержки пользователей ZeroParking

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

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


Вы здесь » Форум поддержки пользователей ZeroParking » Галерея скриптов » Скрипты к Новому Году


Скрипты к Новому Году

Сообщений 1 страница 30 из 126

1

Вставлять скрипты Администратирование-Настройки-HTML вверх или HTML низ

Снег 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.

Код:
<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

2

Зимний календарь

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

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

http://forumupload.ru/uploads/0002/25/06/1151-1.jpg

+1

3

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

Если же хотите создать свою то вам сюда

http://line.romanticcollection.ru/new/4_49b_386D1950_RdoPnovogoPgoda_0.gif

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

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

Код:
[hide]<a href="http://line.romanticcollection.ru" target="_blank"><img src="http://line.romanticcollection.ru/new/4_49b_386D1950_RdoPnovogoPgoda_0.gif" border="0" /></a>[/hide]

0

4

Новогодняя музыка на форум

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

0

5

Новогодний фон

Код:
[hide]<style type="text/css">
HTML, BODY {background-image: url("http://forumupload.ru/uploads/0002/25/06/1152-1.jpg")!important; background-repeat: repeat !important;}
</style>[/hide]

http://forumupload.ru/uploads/0002/25/06/1152-1.jpg

0

6

Новогодние стили

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

+1

7

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

Такая смена курсора возможна в InternetExoplorer. В Опере и FireFox не прокатит...

http://fantasyflash.ru/cursor/cur/cursor134.gif

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

http://fantasyflash.ru/cursor/cur/cursor135.gif

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

http://fantasyflash.ru/cursor/cur/cursor136.gif

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

http://fantasyflash.ru/cursor/cur/cursor138.gif

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

http://fantasyflash.ru/cursor/cur/cursor140.gif

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

http://fantasyflash.ru/cursor/cur/cursor139.gif

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

http://fantasyflash.ru/cursor/cur/cursor142.gif

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

http://fantasyflash.ru/cursor/cur/cursor143.gif

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

0

8

Рассыпающиеся звездочки при клике

посмотреть пример

Код:
[hide]<SCRIPT language=JavaScript1.2>
<!-- 
var ver  = navigator.appVersion;
var dom  = document.getElementById ? 1 : 0;
var ie5  = (ver.indexOf("MSIE 5") > -1 && dom) ? 1 : 0;
var n  = (document.layers);
var ie = (document.all);

var sparksAflyin = 0;
var totalSparks = 0;
var sparksOn = 1;
function StarMouse() {
document.onmousedown = mouseDown;
if (n) document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE);
}
function mouseDown(e) {
if (sparksOn) {
var mousex = (n) ? e.pageX : event.x+document.body.scrollLeft;
var mousey = (n) ? e.pageY : event.y+document.body.scrollTop;
if (!sparksAflyin) {
for (var k = 0; k <= 6; k++)
   eval('SHOW("sDiv'+k+'")');
sparksAflyin = 1;
totalSparks = 0;//osw
for(i = 0;i <= 6; i++)
eval('moveTo('+i+',0,'+mousex+','+mousey+')');
      }
   }
}
function moveTo(i,j, mousex, mousey){
if (j < eval('anim_'+i+'_x.length') ){
var tempx = eval('anim_'+i+'_x[j]+mousex');
var tempy = eval('anim_'+i+'_y[j]+mousey');
if (ie) {
if(tempy+30 > (document.body.offsetHeight+document.body.scrollTop))
tempy = document.body.offsetHeight+document.body.scrollTop-30;
if(tempx+30 > (document.body.offsetWidth+document.body.scrollLeft))
tempx = document.body.offsetWidth+document.body.scrollLeft-30;
eval('document.all.sDiv'+i+'.style.left = tempx;');
eval('document.all.sDiv'+i+'.style.top  = tempy;');//fantasyflash.ru
}
if (n) {
eval('document.layers.sDiv'+i+'.left = tempx;');
eval('document.layers.sDiv'+i+'.top  = tempy;');
}
j++;
    setTimeout("moveTo("+i+","+j+","+mousex+","+mousey+")",50)
}
else {
eval('HIDE("sDiv'+i+'")');
totalSparks++;
}
if (totalSparks == 7) {
sparksAflyin = 0;
totalSparks  = 0;
   }
}
function SHOW(divName){
if (document.all)
eval('document.all.'+divName+'.style.visibility = "visible";');
else if (document.layers)
eval('document.layers["'+divName+'"].visibility = "visible";');//osw
}
function HIDE(divName){
if (document.all)
eval('document.all.'+divName+'.style.visibility = "hidden";');
else if (document.layers)
eval('document.layers["'+divName+'"].visibility = "hide";');
}
anim_0_x=new Array(20,20,10,0,0,0,0,0,0,0,0,0);
anim_0_y=new Array(-20,-40,-60,-80,-60,-40,-20,0,20,40,60,80);
anim_1_x=new Array(20,20,17,36,60,78,90,92,93,98,108,120,133,152,181);
anim_1_y=new Array(-20,-20,-33,-38,-38,-27,-2,25,51,84,113,141,162,212,253);
anim_2_x=new Array(20,20,2,3,4,5,6,7,8,9,10,12,13,15,18);
anim_2_y=new Array(-20,-20,-33,-38,-38,-27,-2,25,51,84,113,141,162,212,253);
anim_3_x=new Array(-20,-20,-2,-1,7,10,18,35,60,102,94,94,93,97,108,111,117,127);
anim_3_y=new Array(-20,-25,-64,-89,-104,-150,-173,-197,-213,-199,-151,-101,-66,-17,27,87,140,189);
anim_4_x=new Array(-20,-20,-10,-39,-30,-69,-64,-138,-154,-200,-181,-209,-191,-207,-203,-213,-202,-221,-211);
anim_4_y=new Array(-20,-20,-28,-51,-79,-100,-135,-154,-193,-183,-149,-134,-89,-60,8,51,107,157,201);
anim_5_x=new Array(-20,-29,-51,-72,-105,-133,-164,-189,-209,-229,-247,-270,-279,-282,-283,-283,-285,-286,-288);
anim_5_y=new Array(-20,-55,-86,-116,-154,-183,-205,-217,-217,-198,-169,-120,-44,-8,40,87,144,190,248);
anim_6_x=new Array(-20,-20,-7,14,44,79,143,186,217,226,234,244,250,259,265,274);
anim_6_y=new Array(-20,-21,-72,-113,-139,-166,-188,-181,-126,-68,-3,54,134,187,215,257);
//  End -->
</SCRIPT>
[/hide]

0

9

Вт скрипт очень приконый поставте числах так этак двадцатых и ваще приветствие будет с C наступающим новым годом, Wankasta. Ваш последний визит: Сегодня 00:00:00.

________________________________________________________________
Исправлено Администратором Dimitra

Вот скрипт очень прикольный поставьте в числах примерно двадцатых, и приветствие будет С наступающим новым годом, ник пользователя

+2

10

Dimitra написал(а):

Рассыпающиеся звездочки при клике

А куда его?

0

11

Froggy Вверху четко написано куда вставляются скрипты.

0

12

Dimitra

А у вас нет случайно курсоры с волчими лапками?

0

13

Cheza написал(а):

А у вас нет случайно курсоры с волчими лапками?

Нету их можно сделать, но времени тоже нету :(  Особено сейчас в праздники ;)

0

14

Cheza написал(а):

А у вас нет случайно курсоры с волчими лапками?

Залей сюда картинку а курсор я те с ней Сделаю

Отредактировано Wankasta (2007-12-23 14:37:01)

0

15

ты умеешь??????? можешь мне сделать????
я чуть позже картинку скину .. ну или моя аська 498308158

0

16

MуНЯ! сделать курсор очень легко! Главное найти картинку и изменить ее формат. Кстати можно просто нарисовать в фотошопе есть лапки собачьих следов ;)

0

17

а 2 скрипта нельзя вставить в верхнюю шапку?

0

18

LIFE написал(а):

а 2 скрипта нельзя вставить в верхнюю шапку?

Можно

______________________________________________

MуНЯ! написал(а):

ты умеешь??????? можешь мне сделать????
я чуть позже картинку скину .. ну или моя аська 498308158

Ок щас постучусь

_________________________________
Исправлено Администратором - Dimitra

0

19

Wankasta написал(а):

я ставлю а изменений невижу

0

20

LIFE написал(а):

я ставлю а изменений невижу

Про какой скрипт вы говорите?? всмысле курсор??

0

21

Wankasta написал(а):

Про какой скрипт вы говорите?? всмысле курсор??

А причем здесь курсор?

____________________________________________

LIFE Делайте правильно цитирование, а то ни чего не понятно. Выделяем сообщение пользователя которое вы хотите процитировать, а потом нажимаем на кнопку Цитировать.

0

22

Я мож туплю... Но можно что-то типо снега, но чтоб Летучие мышки летали?....

0

23

Скрипт на рассыпающиеся звездочки при клике не работает

0

24

Diesel написал(а):

Скрипт на рассыпающиеся звездочки при клике не работает

В эксплоре работает

____________________________________________________________

FallenAngel написал(а):

Я мож туплю... Но можно что-то типо снега, но чтоб Летучие мышки летали?....

Это точно! Причем здесь твое сообщение в теме пустой страницы! А насчет снего по моему и так достаточно написано.

0

25

У меня идёт,спасибки. А есть что нибудь со звездой!? http://forumupload.ru/uploads/0002/25/06/8547-2.gif

0

26

А у меня не получается! Я вставляю сюда, и не работает!! ->

Отредактировано Demetra (2008-12-06 19:44:19)

0

27

Demetra написал(а):

Я вставляю сюда, и не работает!!

Куда? Сюда - понятие растяжимое

0

28

Вот ещё один скрипт снега

Код:
<script type="text/javascript">


  
  //Configure below to change URL path to the snow image
  var snowsrc="http://www.scriptik.clan.su/jpg/sneg3.gif"
  // Configure below to change number of snow to render
  var no = 10;
  // Configure whether snow should disappear after x seconds (0=never):
  var hidesnowtime = 0;
  // Configure how much snow should drop down before fading ("windowheight" or "pageheight")
  var snowdistance = "pageheight";

///////////Stop Config//////////////////////////////////

  var ie4up = (document.all) ? 1 : 0;
  var ns6up = (document.getElementById&&!document.all) ? 1 : 0;

    function iecompattest(){
    return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
    }

  var dx, xp, yp;    // coordinate and position variables
  var am, stx, sty;  // amplitude and step variables
  var i, doc_width = 800, doc_height = 600;
  
  if (ns6up) {
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
  } else if (ie4up) {
    doc_width = iecompattest().clientWidth;
    doc_height = iecompattest().clientHeight;
  }

  dx = new Array();
  xp = new Array();
  yp = new Array();
  am = new Array();
  stx = new Array();
  sty = new Array();
  snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc
  for (i = 0; i < no; ++ i) {  
    dx[i] = 0;                        // set coordinate variables
    xp[i] = Math.random()*(doc_width-50);  // set position variables
    yp[i] = Math.random()*doc_height;
    am[i] = Math.random()*20;         // set amplitude variables
    stx[i] = 0.02 + Math.random()/10; // set step variables
    sty[i] = 0.7 + Math.random();     // set step variables
        if (ie4up||ns6up) {
      if (i == 0) {
        document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://dynamicdrive.com\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>");
      } else {
        document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>");
      }
    }
  }

  function snowIE_NS6() {  // IE and NS6 main animation function
    doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;
        doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")?  iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;
    for (i = 0; i < no; ++ i) {  // iterate for every dot
      yp[i] += sty[i];
      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();
      }
      dx[i] += stx[i];
      document.getElementById("dot"+i).style.top=yp[i]+"px";
      document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px";  
    }
    snowtimer=setTimeout("snowIE_NS6()", 10);
  }

    function hidesnow(){
        if (window.snowtimer) clearTimeout(snowtimer)
        for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"
    }
        

if (ie4up||ns6up){
    snowIE_NS6();
        if (hidesnowtime>0)
        setTimeout("hidesnow()", hidesnowtime*1000)
        }

</script>

+1

29

Jeme's Vasia
А этот у меня работает! http://forumupload.ru/uploads/0002/25/06/8547-2.gif

0

30

А у меня снег не работает... И как он вообще должен работать?))

0


Вы здесь » Форум поддержки пользователей ZeroParking » Галерея скриптов » Скрипты к Новому Году


Рейтинг форумов | Создать форум бесплатно