Forum www.forum.fora.pl Strona Główna

www.forum.fora.pl
Nieoficjalne forum pomocy serwisu fora.pl
 

[skrypty] Słownik skryptów
Idź do strony Poprzedni  1, 2, 3 ... 7, 8, 9 ... 36, 37, 38  Następny
 
Napisz nowy temat   Odpowiedz do tematu    Forum www.forum.fora.pl Strona Główna -> Pomoc i pytania
Zobacz poprzedni temat :: Zobacz następny temat  
Autor Wiadomość
wacex
Amator postów
Amator postów



Dołączył: 16 Lis 2005
Posty: 46
Przeczytał: 0 tematów

Ostrzeżeń: 4/5

PostWysłany: Sob 20:33, 17 Gru 2005    Temat postu:

A mi wiekszosc nie dziala Sad
Nie wiem czemu Sad
Np. ten na fajerwrek i duzo innych ...


Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Neverling
Nowicjusz
Nowicjusz



Dołączył: 22 Paź 2005
Posty: 22
Przeczytał: 0 tematów

Ostrzeżeń: 0/5
Skąd: łdz

PostWysłany: Sob 22:40, 17 Gru 2005    Temat postu:

Proponuje przykleic ^^

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Will_Patrycja
Maniak postów
Maniak postów



Dołączył: 28 Cze 2005
Posty: 109
Przeczytał: 0 tematów

Ostrzeżeń: 0/5
Skąd: Kraina Elfów...

PostWysłany: Sob 22:55, 17 Gru 2005    Temat postu:

Chcę zauważyc , ze w 1 poscie na 1 stronie w 1 skrypcie nie ma znaczników <scirpt</script> i dlatego on nie działą

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
maro
Nowicjusz
Nowicjusz



Dołączył: 16 Gru 2005
Posty: 38
Przeczytał: 0 tematów

Ostrzeżeń: 0/5

PostWysłany: Nie 10:25, 18 Gru 2005    Temat postu:

tez to zauwazylem Razz nie chcialo mi sie ich przerabiac zeby dzialaly..
ale radze nie urzywac takich dodatkow, bo to strasznie spowalnia forum, i sie wiesza all


Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
MaxPL
Taki se gostek
Taki se gostek



Dołączył: 15 Gru 2005
Posty: 7
Przeczytał: 0 tematów

Ostrzeżeń: 0/5
Skąd: BP

PostWysłany: Nie 12:12, 18 Gru 2005    Temat postu:

jesli chodzi o snieg spadajacy to jest inny scrypt

Kod:
<script language="JavaScript1.2">

/*
Snow Effect Script
Submitted by Altan d.o.o. (snow@altan.hr, http://www.altan.hr/snow/index.html)
Permission granted to Dynamicdrive.com to feature script in archive
For full source code to this script, visit http://dynamicdrive.com
*/


//Configure below to change URL path to the snow image
var snowsrc="http://img506.imageshack.us/img506/4899/snieg5cg.gif"
// Configure below to change number of snow to render
var no = 10;

var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;

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 (ns4up||ns6up) {
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; // 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 (ns4up) { // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><a href=\"http://dynamicdrive.com/\"><img src='"+snowsrc+"' border=\"0\"></a></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src='"+snowsrc+"' border=\"0\"></layer>");
}
} else 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 snowNS() { // Netscape main animation function
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();
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()", 10);
}

function snowIE_NS6() { // IE and NS6 main animation function
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();
doc_width = ns6up?window.innerWidth : document.body.clientWidth;
doc_height = ns6up?window.innerHeight : document.body.clientHeight;
}
dx[i] += stx[i];
if (ie4up){
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
else if (ns6up){
document.getElementById("dot"+i).style.top=yp[i];
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i]);
}
}
setTimeout("snowIE_NS6()", 10);
}

if (ns4up) {
snowNS();
} else if (ie4up||ns6up) {
snowIE_NS6();
}

</script>


Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
piternet
Maniak postów
Maniak postów



Dołączył: 03 Lis 2005
Posty: 197
Przeczytał: 0 tematów

Pomógł: 5 razy
Ostrzeżeń: 5/5

PostWysłany: Nie 14:12, 18 Gru 2005    Temat postu:

Już poprawiłem ten skrypt na śnieg!

Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation Exclamation


Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
kwiatek
Członek mafii postowej
Członek mafii postowej



Dołączył: 07 Lis 2005
Posty: 272
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: chlopak jestem :P

PostWysłany: Nie 14:17, 18 Gru 2005    Temat postu:

co wy tak z tym sniegiem Question przeciez aj podawalem juz scrpt co do konca padal Neutral

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Ismael
Maniak postów
Maniak postów



Dołączył: 10 Lis 2005
Posty: 142
Przeczytał: 0 tematów

Ostrzeżeń: 5/5

PostWysłany: Nie 14:24, 18 Gru 2005    Temat postu:

prosze o skrypt do fajerwerek Wink

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
maro
Nowicjusz
Nowicjusz



Dołączył: 16 Gru 2005
Posty: 38
Przeczytał: 0 tematów

Ostrzeżeń: 0/5

PostWysłany: Nie 14:39, 18 Gru 2005    Temat postu:

bardzo fajny i bardzo przydatnyskrypt na forum,poleccam!!


Kod:

imageshack, czyli darmowy hosting (foto)
<iframe src="http://imageshack.us/iframe.php?txtcolor=e97c00&type=blank&size=30" scrolling="no" allowtransparency="true" frameborder="0" width="320" height="110">Update your browser for ImageShack.us!</iframe>


<SCRIPT language=JavaScript1.2 type=text/javascript>

MN="";i=0;k=1;Na=new Array;

Na[1]="www.komputermojswiat.fora.pl";Na[2]="...:::Zapraszam:::...";

function WEBS()

{

setTimeout("",3000);

window.top.document.title=" "+MN+" <";

MN+=Na[k].charAt(i);

if (i==Na[k].length)

{

MN="";i=0;

if (k==Na.length-1) k=1

else k++; setTimeout("WEBS()",3000);

}

else {setTimeout("WEBS()",150);i++;}

}

WEBS();

</script>


kolor e97c00 mozna zmienic [link widoczny dla zalogowanych][/url]
_______________


Post został pochwalony 0 razy

Ostatnio zmieniony przez maro dnia Nie 14:53, 18 Gru 2005, w całości zmieniany 1 raz
Powrót do góry
Zobacz profil autora
ZOMBI
Taki se gostek
Taki se gostek



Dołączył: 07 Gru 2005
Posty: 14
Przeczytał: 0 tematów

Ostrzeżeń: 5/5

PostWysłany: Nie 14:43, 18 Gru 2005    Temat postu:

podajcie skrypt zeby do tematu mozna bylo wejsc po podaniu loginu i hasla

jest taki dobry skrypt


Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
maro
Nowicjusz
Nowicjusz



Dołączył: 16 Gru 2005
Posty: 38
Przeczytał: 0 tematów

Ostrzeżeń: 0/5

PostWysłany: Nie 15:02, 18 Gru 2005    Temat postu:

[link widoczny dla zalogowanych]
zobacz sobie tutaj, sa 3 takie skrypty, wybierz sobie ktorys!!


Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Ismael
Maniak postów
Maniak postów



Dołączył: 10 Lis 2005
Posty: 142
Przeczytał: 0 tematów

Ostrzeżeń: 5/5

PostWysłany: Nie 15:05, 18 Gru 2005    Temat postu:

dajcie skrypt na fajerwerki bo jzuniedługo sylwek Wink

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
maro
Nowicjusz
Nowicjusz



Dołączył: 16 Gru 2005
Posty: 38
Przeczytał: 0 tematów

Ostrzeżeń: 0/5

PostWysłany: Nie 15:15, 18 Gru 2005    Temat postu:

polecam opcje "szukaj" Smile

fajerwerkowy kursor:

Kod:
<script>
var xLayerNo=0;



function xLayer(xHtml, x, y, w)

{

   if(x==null)x=0;

   if(y==null)y=0;

   if(w==null)w=100;



   if(document.layers)

   {

      this.layer=new Layer(w);

      this.layer.document.open();

      this.layer.document.write(xHtml);

      this.layer.document.close();

      this.layer.moveTo(x,y);

      this.images=this.layer.document.images;

/*** These used to be prototypes (like  IE ) but when NS (communicator) 4.7 ***/

/*** first loads up, for some reason the prototypes do not get assigned ***/

this.moveTo    = function(x,y)    { this.layer.moveTo(x,y); }

this.moveBy    = function(x,y)    { this.layer.moveBy(x,y); }

this.show      = function()    { this.layer.visibility = "show"; }

this.hide       = function()    { this.layer.visibility = "hide"; }

this.setzIndex   = function(z)   { this.layer.zIndex = z; }

this.setBgColor    = function(color) { this.layer.bgColor = color; }

this.setBgImage    = function(image) { this.layer.background.src = image; }

this.getX       = function()    { return this.layer.left; }

this.getY       = function()    { return this.layer.right; }

this.getWidth    = function()    { return this.layer.width; }

this.getHeight    = function()    { return this.layer.height; }

this.getStackingOrder = function()   { return this.layer.zIndex; }

this.isVisible    = function()    { return this.layer.visibility == "show"; }

this.setContent   = function(xHtml)

{

   this.layer.document.open();

   this.layer.document.write(xHtml);

   this.layer.document.close();

}

this.clip = function(x1,y1, x2,y2)

{

   this.layer.clip.top   =y1;

   this.layer.clip.left   =x1;

   this.layer.clip.bottom   =y2;

   this.layer.clip.right   =x2;

}



   }

   else

   if(document.all)

   {

      var xName="xLayer" + xLayerNo++;



      txt =   "<DIV ID='" + xName

         + "' STYLE=\"position:absolute;"

         + "left:"  + x + ";"

         + "top:"   + y + ";"

         + "width:" + w + ";"

         + "visibility:hidden\">"

         + xHtml

         + "</DIV>";

      document.body.insertAdjacentHTML("BeforeEnd",txt);

      this.content = document.all[xName];

      this.layer   = document.all[xName].style;

      this.images  = document.images;

   }

   return(this);

}



if(document.layers)

{

/**** START prototypes for NS ***/

/*** END NS ***/

}

else

if(document.all)

{

/*** START prototypes for IE ***/

xLayer.prototype.moveTo = function(x,y)

{

   this.layer.pixelLeft = x;

   this.layer.pixelTop = y;

}

xLayer.prototype.moveBy = function(x,y)

{

   this.layer.pixelLeft += x;

   this.layer.pixelTop += y;

}

xLayer.prototype.show      = function()    { this.layer.visibility = "visible"; }

xLayer.prototype.hide      = function()    { this.layer.visibility = "hidden"; }

xLayer.prototype.setzIndex   = function(z)   { this.layer.zIndex = z; }

xLayer.prototype.setBgColor   = function(color) { this.layer.backgroundColor = color; }

xLayer.prototype.setBgImage   = function(image) { this.layer.backgroundImage = image; }

xLayer.prototype.setContent   = function(xHtml)   { this.content.innerHTML=xHtml; }

xLayer.prototype.getX      = function()    { return this.layer.pixelLeft; }

xLayer.prototype.getY      = function()    { return this.layer.pixelRight; }

xLayer.prototype.getWidth   = function()    { return this.layer.pixelWidth; }

xLayer.prototype.getHeight   = function()    { return this.layer.pixelHeight; }

xLayer.prototype.getStackingOrder = function()   { return this.layer.zIndex; }

xLayer.prototype.isVisible   = function()   { return this.layer.visibility == "visible"; }

xLayer.prototype.clip      = function(x1,y1, x2,y2)

{

   this.layer.clip="rect("+y1+" "+x2+" "+y2+" "+x1+")";

   this.layer.pixelWidth=x2;

   this.layer.pixelHeight=y2;

   this.layer.overflow="hidden";

}

/*** END IE ***/

}

else

{

xLayer.prototype.moveTo    = function(x,y)    {  }

xLayer.prototype.moveBy    = function(x,y)    {  }

xLayer.prototype.show       = function()    {  }

xLayer.prototype.hide       = function()    {  }

xLayer.prototype.setStackingOrder = function(z) {  }

xLayer.prototype.setBgColor    = function(color) {  }

xLayer.prototype.setBgImage    = function(image) {  }

xLayer.prototype.getX       = function()    { return 0; }

xLayer.prototype.getY       = function()    { return 0; }

xLayer.prototype.getWidth    = function()    { return 0; }

xLayer.prototype.getHeight    = function()    { return 0; }

xLayer.prototype.getStackingOrder = function()   { return 0; }

xLayer.prototype.isVisible    = function()    { return false; }

xlayer.prototype.setContent   = function(xHtml) { }



}

/*** End  - xLayer - a cross browser layer object by [link widoczny dla zalogowanych] ***/



var theTimer=null;

var mouseX = 100;

var mouseY = 100;



var oneDeg=(2*Math.PI)/360;



/*** Pinwheel type 1 ***/

var Radius = 5;

var NumStars=32;

var NumSteps=16;

var StepAngle=(25)*oneDeg;



/*** Pinwheel type 2 ***/

//var Radius = 10;

//var NumStars=16;

//var NumSteps=8;

//var StepAngle=(22.5)*oneDeg;



/*** Pinwheel type 3 ***/

//var Radius = 5;

//var NumStars=16;

//var NumSteps=16;

//var StepAngle=(22.5)*oneDeg;



/*** Pinwheel type 4 ***/

//var Radius = 10;

//var NumStars=32;

//var NumSteps=16;

//var StepAngle=(11.25)*oneDeg;



var StarObject=new Array();



var hexDigit=new Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F");

function dec2hex(dec)

{

   return(hexDigit[dec>>4]+hexDigit[dec&15]);

}

function hex2dec(hex)

{

   return(parseInt(hex,16))

}



function CreateStar()

{



   this.layer       = new xLayer(" ", 100, 100, 10);

   this.currAngle    = 0;

   this.step      = 0;

   this.x      = 100;

   this.y      = 100;

   return (this);

}



function restart()

{

   for(i=0;i<NumStars;i++)

   {

      StarObject[i].currAngle = (StepAngle*i);

      StarObject[i].step = (i%NumSteps);

      StarObject[i].x = mouseX;

      StarObject[i].y = mouseY;

      StarObject[i].layer.moveTo(mouseX, mouseY);

      StarObject[i].layer.show();

   }

}

/*** Choose a random pinwheel configuration ***/

function next_random()

{

   var num=Math.floor(Math.random()*4);

   

   for(i=0;i<NumStars;i++)

      StarObject[i].layer.hide();



   if(num==0){

      Radius = 5;

      NumStars=32;

      NumSteps=16;

      StepAngle=(25)*oneDeg;

   }

   else

   if(num==1){

      Radius = 10;

      NumStars=16;

      NumSteps=8;

      StepAngle=(22.5)*oneDeg;

   }

   else

   if(num==2){

      Radius = 5;

      NumStars=16;

      NumSteps=16;

      StepAngle=(22.5)*oneDeg;

   }

   else{

      Radius = 10;

      NumStars=32;

      NumSteps=16;

      StepAngle=(11.25)*oneDeg;

   }





   for(i=0 ; i<NumStars; i++)

   {

      var s=StarObject[i];

      s.currAngle = (StepAngle*i);

      s.step = (i%NumSteps);

      s.x=mouseX;

      s.y=mouseY;

   }



   restart();



   theTimer=setTimeout("next_random()", 10000);

}

function start()

{

if (document.all)

   document.onmousemove = IE_MouseMove;



if (document.layers) {

   window.captureEvents(Event.MOUSEMOVE);

   window.onmousemove = NS_MouseMove;

}



   for(i=0 ; i<NumStars; i++)

   {

      StarObject[i]=new CreateStar();

      StarObject[i].currAngle = (StepAngle*i);

      StarObject[i].step = (i%NumSteps);

      StarObject[i].layer.clip(0,0,2,2);

      StarObject[i].layer.setBgColor("red");

   }



   for(i=0 ; i<NumStars ; i++)

      StarObject[i].layer.show();



   /*** Remove this if you only 1 type of pinwheel ***/

   theTimer=setTimeout("next_random()", 10000);



   Rotate();

}



function changeColour(s)

{

   var colour="";



   r2= Math.floor(Math.random()*2)*255;

   g2= Math.floor(Math.random()*2)*255;

   b2= Math.floor(Math.random()*2)*255;



   if(r2==0 && g2==0 && b2==0)

      r2=255;



   colour = "#" + dec2hex(r2) + dec2hex(g2) + dec2hex(b2);

   s.layer.setBgColor(colour);



   s.x=mouseX;

   s.y=mouseY;

}

function Rotate()

{

   var x;

   var y;

   for (i = 0 ; i < NumStars ; i++ ) {

      var s=StarObject[i];

     

      if(s.step==0)

         changeColour(s);



      var angle = s.currAngle;

      var rad   = s.step*Radius + 10;

      x = s.x + rad*Math.cos(angle);

      y = s.y + rad*Math.sin(angle);



      s.layer.moveTo(x,y);



      s.step = (s.step+1)%NumSteps;

   }



   setTimeout("Rotate()", 30);

}





function IE_MouseMove()

{

   mouseX = document.body.scrollLeft+event.x;

   mouseY = document.body.scrollTop+event.y;

}

function NS_MouseMove(evnt) {

   mouseX = evnt.pageX;

   mouseY = evnt.pageY;

}



function handle_resize()

{

   if(document.layers)

      start();

}



window.onresize=handle_resize;

window.onload=start;
</script>




fajerwerki:


Kod:

<style type="text/css">

body { overflow: hidden; }

v\:* { behavior: url(#default#VML); }

</style><script language="JavaScript">

 

colors = new Array();



// Define your own color combinations

colors[0] = new Array('yellow', 'lime');

colors[1] = new Array('silver', 'green')

colors[2] = new Array('silver', 'blue');

colors[3] = new Array('silver', 'purple');

colors[4] = new Array('purple', 'white');

colors[5] = new Array('blue', 'silver');

colors[6] = new Array('red', 'fuchsia');

colors[7] = new Array('yellow', 'red');



// Define the maximum number of fire arrows

maximum = 1000;



vmlobj='';

 for(i = 0; i < 12; i++){

 vmlobj += '<div id="ster'+i+'" style="position:absolute; left:-50px; top-50px; visibility:hidden; z-index:50;">';

 vmlobj += '<v:shape style="width:15px; height:15px;" fillcolor="yellow" coordorigin="0,0" coordsize="200 200">';

 vmlobj += '<v:path v="m 8,65 l 72,65, 92,11, 112,65, 174,65, 122,100, 142,155,92,121, 42,155, 60,100 x e"/>';

 vmlobj += '<v:stroke on="false" /></v:shape></div>';

 }

document.write(vmlobj); vmlobj = null;



aantal = 0;



function begin()

{

try {

 if(aantal == maximum){ return;}

 kleurschema = Math.floor(Math.random() * colors.length);

 posLinks = Math.floor(Math.random() * (document.body.clientWidth - 180));

 posLinks = (posLinks < 170)? 170: posLinks;

 posBoven = Math.floor(Math.random() * (document.body.clientHeight - 180));

 posBoven = (posBoven < 170)? 170: posBoven;

 straal = 0; uiteen = true; teller = 1; flikkereffect = false;

 for(var i = 0; i < 12; i++){

 document.getElementsByTagName('shape')[i].setAttribute('fillcolor', colors[kleurschema][0]);

 document.getElementById('ster'+i).style.visibility = 'hidden'; // 5.0 fix

 document.getElementById('ster'+i).style.left = posLinks;

 document.getElementById('ster'+i).style.top = posBoven;

 }

 document.getElementById('ster0').style.top = (document.body.clientHeight - 20);

 document.getElementById('ster0').style.visibility = 'visible';

 omhoog();

} catch(e){}

}



function omhoog()

{

try {

  positie = parseInt(document.getElementById('ster0').style.top);

  if(positie > posBoven){

  document.getElementById('ster0').style.top = (positie - 25);

  setTimeout('omhoog()', 50);

  } else {

   for(i = 1; i < 12; i++){

   document.getElementById('ster'+i).style.top = positie;

   document.getElementById('ster'+i).style.visibility = 'visible';

   }

  uiteenspatten();

  }

} catch(e){}

}



function uiteenspatten()

{

try {

 if(straal > 120 && straal % 10 == 0){

 flikkereffect = true;

 teller = (teller == colors[kleurschema].length)? 0: (teller+1);

 }

 for(var i = 0; i < 12; i++){

 var hoek = i * 30;

 var piHoek = Math.PI - Math.PI / 180 * hoek;

 var links = posLinks + Math.round(straal * Math.sin(piHoek));

 var boven = positie + Math.round(straal * Math.cos(piHoek));

 document.getElementById('ster'+i).style.left = links;

 document.getElementById('ster'+i).style.top = boven;

  if(flikkereffect){

  document.getElementsByTagName('shape')[i].setAttribute('fillcolor', colors[kleurschema][teller]);

  }

 }

 if(straal < 160 && uiteen){

 straal += (straal < 120)? 10: 5;

 setTimeout('uiteenspatten()', 50);

 }

 else if(straal > 120){

 uiteen = false; straal -= 5;

 setTimeout('uiteenspatten()', 50);

 }

 else if(straal <= 120){

  for(var i = 0; i < 12; i++){

  document.getElementById('ster'+i).style.visibility = 'hidden';

  }

 aantal++;

 setTimeout('begin()', 500);

 }

} catch(e) {}

}



window.onload=begin;



</script>


i jeszcze jedne fajerwerki:


Kod:

<script language="JavaScript">
var author="www.dseffects.com";
var numparticles="40";
var speed="2";
var intensity="2";
var regkey="";
</script>
<script src="/scripts/fireworks/DS_FireWorks.js"></script>


mam nadzieje ze pomoglem Smile


Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
boniek_007
Maniak postów
Maniak postów



Dołączył: 19 Lis 2005
Posty: 127
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: Z domu

PostWysłany: Nie 15:30, 18 Gru 2005    Temat postu:

macie jeszcze inne scrypty

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
maro
Nowicjusz
Nowicjusz



Dołączył: 16 Gru 2005
Posty: 38
Przeczytał: 0 tematów

Ostrzeżeń: 0/5

PostWysłany: Nie 15:49, 18 Gru 2005    Temat postu:

oczywiscie zemamy, tylko napisz co cie dokladnie interesuje??

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Wyświetl posty z ostatnich:   
Napisz nowy temat   Odpowiedz do tematu    Forum www.forum.fora.pl Strona Główna -> Pomoc i pytania Wszystkie czasy w strefie CET (Europa)
Idź do strony Poprzedni  1, 2, 3 ... 7, 8, 9 ... 36, 37, 38  Następny
Strona 8 z 38

 
Skocz do:  
Nie możesz pisać nowych tematów
Nie możesz odpowiadać w tematach
Nie możesz zmieniać swoich postów
Nie możesz usuwać swoich postów
Nie możesz głosować w ankietach


fora.pl - załóż własne forum dyskusyjne za darmo
Powered by phpBB © 2001, 2005 phpBB Group
deoxGreen v1.2 // Theme created by Sopel stylerbb.net & programosy.pl

Regulamin