скрипт "падающий снег"
при обращении к народу бывают глюки
дай полный вариант плз... и без всяких СКОРЫХ ПОМОЩЕЙ
var snowflake = "Java/2/1/sneg.gif";
А вот тебе в нагрузку более красивые снежинки:
var no = 20; // количество снежинок
var speed = 60; // скорость снежинок
var cnt = 0;
function getSnowflake {
cnt++;
if (Math.random > 0.00 || cnt <= no*2) {
return "Images/snow0"+(cnt%3+1)+".gif";
} else {
return "Images/snow1"+(cnt%3+1)+".gif";
cnt = cnt%3;
}
}
var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;
var mozilla = (document.getElementById && !ie4up) ? 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 || mozilla) {
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;
stx[i] = 0.02 + Math.random/10;
sty[i] = 0.7 + Math.random;
if (ns4up) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(getSnowflake + "\" border=\"0\" name=\"pic"+ i +"\"></layer>");
} else if (mozilla) {
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(getSnowflake + "\" border=\"0\" id=\"pic"+ i +"\"></div>");
} else if (ie4up) {
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(getSnowflake + "\" border=\"0\" name=\"pic"+ i +"\"></div>");
}
}
function snowMOZ {
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;
stx[i] = 0.02 + Math.random/10;
sty[i] = 0.7 + Math.random;
doc_width = self.innerWidth;
doc_height = self.innerHeight;
B = document.getElementById("pic"+i).src = getSnowflake;
}
dx[i] += stx[i];
A = document.getElementById("dot" + i);
A.style.top = yp[i];
A.style.left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowMOZ", speed);
}
function snowNS {
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;
stx[i] = 0.02 + Math.random/10;
sty[i] = 0.7 + Math.random;
doc_width = self.innerWidth;
doc_height = self.innerHeight;
// document.all["pic"+i].src = getSnowflake;
}
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;
stx[i] = 0.02 + Math.random/10;
sty[i] = 0.7 + Math.random;
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
document.all["pic"+i].src = getSnowflake;
}
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 (mozilla) {
snowMOZ;
} else if (ie4up) {
snowIE;
}
Нужны 3 разных снежинки (snow0*.gif) и 3 разных "прикола" (snow1*.gif)
не, я локально сохраняю снежинку у себя, прописываю к ней путь, она не падает и вообще не появляется...
я не программер, HTML немного знаю
Оставить комментарий
a100244
не могу с ним разобраться...<>
<script>
<Скорая помощь от STRAIDERa-->
<script>
<>
</script>
<>
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 = 0;
xp = Math.random*(doc_width-50);
yp = Math.random*doc_height;
am = Math.random*20;
stx = 0.02 + Math.random/10;
sty = 0.7 + Math.random;
if (ns4up) {
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"25\" ");
document.write("top=\"25\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"25\" ");
document.write("top=\"25\" 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: 25px; LEFT: 25px;\"><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: 25px; LEFT: 25px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
}
}
}
function snowNS {
for (i = 0; i < no; ++ i) {
yp += sty;
if (yp > doc_height-50) {
xp = Math.random*(doc_width-am-30);
yp = 0;
stx = 0.02 + Math.random/10;
sty = 0.7 + Math.random;
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx += stx;
document.layers["dot"+i].top = yp;
document.layers["dot"+i].left = xp + am*Math.sin(dx);
}
setTimeout("snowNS", speed);
}
function snowIE {
for (i = 0; i < no; ++ i) {
yp += sty;
if (yp > doc_height-50) {
xp = Math.random*(doc_width-am-30);
yp = 0;
stx = 0.02 + Math.random/10;
sty = 0.7 + Math.random;
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx += stx;
document.all["dot"+i].style.pixelTop = yp;
document.all["dot"+i].style.pixelLeft = xp + am*Math.sin(dx);
}
setTimeout("snowIE", speed);
}
if (ns4up) {
snowNS;
} else if (ie4up) {
snowIE;
}
// End -->
</script>
<>
меняю здесь адрес своей снежинки:
<var snowflake = "http://www.straider2k1.narod.ru/Java/2/1/sneg.gif";
но ничего не выходит
хостинг позволяет поддерживать скрипты