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 ... 5, 6, 7 ... 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ść
AnakinSkywalker
Maniak postów
Maniak postów



Dołączył: 03 Gru 2005
Posty: 181
Przeczytał: 0 tematów

Ostrzeżeń: 2/5

PostWysłany: Pon 12:07, 12 Gru 2005    Temat postu:

oks

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



Dołączył: 20 Lis 2005
Posty: 181
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: z lasu

PostWysłany: Pon 12:10, 12 Gru 2005    Temat postu:

mozesz zdjac modka bo i tak nie wejde w panel Exclamation
skrypt jest zly Exclamation
napisz co to w ogole mialo byc Question


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



Dołączył: 03 Gru 2005
Posty: 181
Przeczytał: 0 tematów

Ostrzeżeń: 2/5

PostWysłany: Pon 12:53, 12 Gru 2005    Temat postu:

od tego kolesia!!!!!tego MANIAK SKRYPTÓW!!!!!!

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



Dołączył: 20 Lis 2005
Posty: 181
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: z lasu

PostWysłany: Pon 13:02, 12 Gru 2005    Temat postu:

no to albo ci on zle podal albo ty niecaly skopiowales Laughing

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



Dołączył: 03 Gru 2005
Posty: 181
Przeczytał: 0 tematów

Ostrzeżeń: 2/5

PostWysłany: Pon 13:02, 12 Gru 2005    Temat postu:

CAŁY SKOPIWAŁEM!!!

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



Dołączył: 20 Lis 2005
Posty: 181
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: z lasu

PostWysłany: Pon 13:04, 12 Gru 2005    Temat postu:

a co to za skrypt w ogole jest?

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



Dołączył: 03 Gru 2005
Posty: 181
Przeczytał: 0 tematów

Ostrzeżeń: 2/5

PostWysłany: Pon 13:10, 12 Gru 2005    Temat postu:

na śnieg jeżeli ten skrypt jest zły podaj mi prawidłowy

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



Dołączył: 20 Lis 2005
Posty: 181
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: z lasu

PostWysłany: Pon 13:12, 12 Gru 2005    Temat postu:

na ten temat juz bylo pelno skryptow Shocked czekaj znajde ci Confused

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



Dołączył: 20 Lis 2005
Posty: 181
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: z lasu

PostWysłany: Pon 13:14, 12 Gru 2005    Temat postu:

i to cale skopiuj i wklej tam


Kod:
<script type="text/javascript">

/******************************************
* Snow Effect Script- By Altan d.o.o. (http://www.altan.hr/snow/index.html)
* Visit Dynamic Drive DHTML code library (http://www.dynamicdrive.com/) for full source code
* Last updated Nov 9th, 05' by DD. This notice must stay intact for use
******************************************/

//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;
// 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>


Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Anonim_0007
Aktywny amator
Aktywny amator



Dołączył: 05 Gru 2005
Posty: 80
Przeczytał: 0 tematów

Ostrzeżeń: 2/5
Skąd: napewno z Polski :-)

PostWysłany: Pon 19:44, 12 Gru 2005    Temat postu:

To skrypt na spadajace gwiazdy (powinno dzialac)
<script type="text/javascript">

/******************************************
* Snow Effect Script- By Altan d.o.o. (http://www.altan.hr/snow/index.html)
* Visit Dynamic Drive DHTML code library (http://www.dynamicdrive.com/) for full source code
* Last updated Nov 9th, 05' by DD. This notice must stay intact for use
******************************************/

//Configure below to change URL path to the snow image
var snowsrc="http://img387.imageshack.us/img387/933/gwiazdka6xu.gif"
// Configure below to change number of snow to render
var no = 35;
// 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*10000)
}

</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: Wto 17:05, 13 Gru 2005    Temat postu:

temat kolejny raz edytowany

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



Dołączył: 08 Gru 2005
Posty: 33
Przeczytał: 0 tematów

Ostrzeżeń: 1/5

PostWysłany: Wto 17:19, 13 Gru 2005    Temat postu:

na ktoś Skrypt do textu tak jak np. ognisty był to jakiś wodny text ??
moze ktoś ma tekie Skrypty z textem fajnym??


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: Śro 20:22, 14 Gru 2005    Temat postu:

można by edytować ten ognisty!

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



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

Ostrzeżeń: 5/5

PostWysłany: Śro 23:26, 14 Gru 2005    Temat postu:

<bgsound src="/scripts/bobas/babylaugh.wav" loop="-1"><IMG id=Om style="LEFT: -10px; POSITION: absolute" src="/scripts/bobas/baby.gif" width="145" height="145">

<SCRIPT>
//
// Thanks to MP1515 <MP151@aramette.net> for all Mathematical model
// __________________________________________________________
//
// Eddie Edin C.
//
// email : [link widoczny dla zalogowanych]
// __________________________________________________________
//
//----------------------------------------------------------------------
ddx=0;ddy=0X=0Y=0;xm=0;ym=0
OmW=Om.width/2;OmH=Om.height/2
document.body.style.cursor="hand"
function Ouille(){
x=Math.round(PX+=(ddx+=((xm-PX-ddx)*3)/100))
y=Math.round(PY+=(ddy+=((ym-PY-ddy)*3-300)/100))
Om.style.left=x-OmW
Om.style.top=y-OmH
elastoc.to=x+","+y
elastoc.strokecolor="RGB("+x+","+(2*y)+",0)"
setTimeout("Ouille()",1)
}
function momouse(){
xm=window.event.x
ym=window.event.y
elastoc.from=xm+","+ym
}
if(ScriptEngineMajorVersion()==5 && ScriptEngineMinorVersion()==5){
code="<v:line id=elastoc style='LEFT:0;POSITION:absolute;TOP:0' strokeweight='1.5pt'></v:line>"} else {
code="<v:group style='LEFT:-10;WIDTH:100pt;POSITION:absolute;TOP:0;HEIGHT:100pt' coordsize='21600,21600'><v:line id=elastoc style='LEFT:0;WIDTH:100pt;POSITION:absolute;TOP:0;HEIGHT:100pt' strokeweight='1.5pt'></v:line></v:group>"}
document.body.insertAdjacentHTML("afterBegin",code)
document.onmousemove=momouse
Ouille()
//----------------------------------------------------------------------


</SCRIPT>




to jest kod na bardzo sympatycznego bobasa przy kursorze:PRazzRazz


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



Dołączył: 24 Wrz 2005
Posty: 14
Przeczytał: 0 tematów

Ostrzeżeń: 0/5
Skąd: Łódź City

PostWysłany: Czw 17:28, 15 Gru 2005    Temat postu:

a ma może ktos skrypt na Św. Mikołaja?? Jakiś taki fajny skrypt żeby to był

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 EET (Europa)
Idź do strony Poprzedni  1, 2, 3 ... 5, 6, 7 ... 36, 37, 38  Następny
Strona 6 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