2 problemy
MaTiSs - 29-11-2005 15:00
2 problemy
Mam dwa problemy jeden ze skryptem java a drógi php.
JAVA oto skrypt 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="grafika/snieg.png" // Configure below to change number of snow to render var no = 20;
var ns4up = (document.layers) ? 2 : 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, doc_height;
if (ns4up||ns6up) { doc_width = self.innerWidth-50; doc_height = self.innerHeight; } else if (ie4up) { doc_width = document.body.clientWidth-50; 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-0); // set position variables yp[i] = Math.random()*doc_height; am[i] = Math.random()*0; // 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=\"0\" top=\"0\" visibility=\"show\"><a href=\"http://dynamicdrive.com/\"><img src='"+snowsrc+"' border=\"0\"></a></layer>"); } else { document.write("<layer name=\"dot"+ i +"\" left=\"0\" top=\"0\" 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: 0px; LEFT: 0px;\"><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: 0px; LEFT: 0px;\"><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-0) { xp[i] = Math.random()*(doc_width-am[i]-0); yp[i] = 0; stx[i] = 1 + Math.random()/1; sty[i] = 1 + Math.random(); doc_width = self.innerWidth-200; doc_height = self.innerHeight-10; } 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()", 0); }
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-0) { xp[i] = Math.random()*(doc_width-am[i]-0); yp[i] = 0; stx[i] = 1 + Math.random()/1; sty[i] = 1 + Math.random(); doc_width = (ns6up?window.innerWidth : document.body.clientWidth)-200; doc_height = (ns6up?window.innerHeight : document.body.clientHeight)-30; } dx[i] += stx[i]; if (ie4up){ document.all["dot"+i].style.pixelTop = yp[i]+(document.documentElement.scrollTop||window.pageYOffset||document.body.scrollTop); 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.documentElement.scrollTop||window.pageYOffset||document.body.scrollTop)+'px'; document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+'px'; } } setTimeout("snowIE_NS6()", 0,01); }
if (ns4up) { snowNS(); } else if (ie4up||ns6up) { snowIE_NS6(); }
</script>
Problem polega na tym ze chcę aby śnieżynki leciały przez całą strone a nie nikną pod koniec i przy uzyciu scroola to daremnie wyglada tak jak tu www.matiss.cba.pl/test.php
Drógi problem mam ze skryptem php mianowicie licznikiem z tej strony do pewnego czasu działał bez zarzutu i nagle zaczął nabijać odwiedziny po odświerzaniu oto jego kod być moze cos niechcący popsułem
Kod:
<?php // En: Begin PHP Code / Fr: Debut code PHP /******************************************************************************\ * Cookies digits Access Counter Version 1.0 * * Copyright 2000 Frederic TYNDIUK (FTLS) All Rights Reserved. * * E-Mail: tyndiuk@ftls.org Script License: GPL * * Created 02/28/2000 Last Modified 02/28/2000 * * Scripts Archive at: http://www.ftls.org/php/ * *******************************************************************************/ // Necessary Variables:
$COUNT_FILE = "skrypty/licznik/count_data.txt"; // En: Absolute path and name to count data file. // Fr: Chemin absolu (complet) et Nom du fichier compteur.
$IMG_DIR_URL = "skrypty/licznik/digits/"; // En: URL Directory of digits (0.gif ... 9.gif). // Fr: URL du repertoire des images (0.gif ... 9.gif).
$NB_DIGITS = 6; // En: Minimum number of digits to display (0, to not use 0 left). // Fr: Nombre minimum de chiffre ŕ afficher (0 pour ne pas avoir de 0 devant).
$EXPIRE_DATE = 86400; // En: Cookies Expiration date (second). // Fr: Date d'expiration du cookies (en seconde);
// End Necessary Variables section /******************************************************************************/
if (file_exists($COUNT_FILE)) { // En: Open, read, increment, save and close file. // Fr: Ouvre, lit, incrémente, sauve et ferme le fichier. $fp = fopen("$COUNT_FILE", "r+"); flock($fp, 1); $count = fgets($fp, 4096); if ($visited == "") { $count += 1; setcookie("visited", $count, time()+ $EXPIRE_DATE , "/", $SERVER_NAME); fseek($fp,0); fputs($fp, $count); } flock($fp, 3); fclose($fp); } else { // En: Display a error message if file does not exist. // Fr: Affiche un message d'erreur si le fichier n'existe pas. echo "Can't find file, check '\$file' var...<BR>"; exit; }
// En: Display count value // Fr: Affiche le nombre de visiteur.
chop($count); $nb_digits = max(strlen($count), $NB_DIGITS); $count = substr("0000000000".$count, -$nb_digits);
$digits = preg_split("//", $count);
for($i = 0; $i <= $nb_digits; $i++) { if ($digits[$i] != "") { $html_result .= "<IMG SRC=\"$IMG_DIR_URL$digits[$i].gif\">"; } } // En: End PHP Code // Fr: Fin code PHP ?>
Z góry dzieki za pomoc
MaTiSs - 01-12-2005 19:49
Nikt sie tu nie zna na skryptach ??
zanotowane.pldoc.pisz.plpdf.pisz.pleffulla.pev.pl
|
[MSSQL2000] Problem z =?ISO-8859-2?Q?tabel=B1/indeksem/zapytanie?==?ISO-8859-2?Q?m_czy_b=B3=B1d_w_bazie_danych=2E=2E=2E?=
mysql i mysql-front, problem
String line; if (line=="cos"){...}....problem
Problemy z =?ISO-8859-2?Q?instalacj=B1_PostgreSQL_na_syste?==?ISO-8859-2?Q?mach_Windows?=
[postgres] Problem z =?ISO-8859-2?Q?zmian=B1_struktury_i_z?==?ISO-8859-2?Q?ale=BFno=B6ciami=2E?=
[oracle] =?ISO-8859-2?Q?zmia=BFd=BFony_przez_problem=3A_za?==?ISO-8859-2?Q?pytanie_do_hierarchi?=
Problem z wartościami w MySQL :( [ MySQL and ASP and VBScript ]
[PGSQL] czy ktos mial problemy z initdb pgsql 8.1 ?
[MySQL] Problem z zapisem danych w bazie danych
Problem z mysql - can't connect to MySQL/nietypowo...
zanotowane.pldoc.pisz.plpdf.pisz.plcoolinarny.opx.pl
Cytat
Decede mihi sole - nie zasłaniaj mi słonca. Gdy kogoś kochasz, jesteś jak stworzyciel świata - na cokolwiek spojrzysz, nabiera to kształtu, wypełnia się barwą, światłem. Powietrze przytula się do ciebie, choćby był mróz, a ty masz w sobie tyle radości, że musisz ją rozdawać wokoło, bo się w tobie nie mieści Hoc fac - tak czyń. A tergo - od tyłu; z tyłu. I czarne włosy posiwieją. Safona |
|