Windows Customization & Support : saab and 21 unknown users

 Word :   Username :  
 
Bottom
Author
 Thread :

Snow

 
n°2573
!3LEM3NT!
Avatar
profil
Posted on 12-06-2007 at 11:23:12 AM  
 

Hey to the people out there
i was wondering can anybody make a tutorial on how to make snow???
thanking you in advance
!3LEM3NT!

answer
mood
GoogleAds
profil
Posted on 12-06-2007 at 11:23:12 AM  
 

answer
n°2574
Asher
Genius is not born , it is made....
Profil: Moderator
Avatar
profil
Posted on 12-07-2007 at 03:12:14 AM  
 

By snow , do you mean snowfall or the snow-land?

answer
n°2575
!3LEM3NT!
Avatar
profil
Posted on 12-07-2007 at 11:43:55 AM  
 

i mean the snow on text like it is on the crystalxp website

answer
n°2576
Asher
Genius is not born , it is made....
Profil: Moderator
Avatar
profil
Posted on 12-07-2007 at 05:59:56 PM  
 

That's credible in Photoshop with the use of Pen Tool , you need to make irregular fragments of snow and then just place them at right place :wink: , you will for sure get something snowy :oui:

answer
n°2577
!3LEM3NT!
Avatar
profil
Posted on 12-07-2007 at 09:58:49 PM  
 

if you dont mind can you maybe make a tutorial

answer
n°2581
Asher
Genius is not born , it is made....
Profil: Moderator
Avatar
profil
Posted on 12-08-2007 at 05:45:46 PM  
 

Refer to this tutorial and let me know if it helps you to get what you want :wink:

answer
n°2582
!3LEM3NT!
Avatar
profil
Posted on 12-08-2007 at 11:18:05 PM  
 

thats what im looking for but i dont understand the bevel and emboss part

 

BUT THANX ALOT

answer
n°2583
Cerberus1991
Profil: Big Penguin
Avatar
profil
Posted on 12-08-2007 at 11:36:33 PM  
 

Quote :

thats what im looking for but i dont understand the bevel and emboss part

 

BUT THANX ALOT

 

why dont you understand it? It basically makes the snow more fluffy and seem more like snow :smile:

answer
n°2584
!3LEM3NT!
Avatar
profil
Posted on 12-09-2007 at 11:42:09 AM  
 

well the out come is cr** thats why

answer
n°2585
Asher
Genius is not born , it is made....
Profil: Moderator
Avatar
profil
Posted on 12-09-2007 at 06:04:05 PM  
 

Whatever the o utcome may be but the good thing about that tutorial is that you atleast got the ideo how such snwo effect can be achieved in Photoshop :oui: , that's the positive aspect of it :wink:

answer
n°2591
!3LEM3NT!
Avatar
profil
Posted on 12-13-2007 at 02:37:22 PM  
 

:lol:

answer
n°2592
The-Rabbit
Profil: New Penguin
Avatar
profil
Posted on 12-13-2007 at 03:09:18 PM  
 

i love snow so i thought i should show you how to put snow on your own website
excuse my bad english but I'm only 14 years old and i come from germany  :whistle:
so this code is for snow on your own homepage ..there are many different kinds of doing it so:

 

this first one is like there is snow mooving around and snow just at the same place not mooving
CODE<!-- Snowfall --> <script type="text/javascript">
   var no =    15;               // number of snowflakes
   var speed = 10;               // the smaler, the faster snowflakes
   var snowflake = "http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif";         // picture source
   var ns4b = (document.layers) ? 1 : 0;   // Netscape4.x
   var b4up = (document.all) ? 1 : 0;      // MSIE4, Opera5, Netccape5
   var dx, xp, yp;               // coordinate and position variables
   var am, stx, sty;               // amplitude and step variables
   var snowobj;
   var i, doc_width = 1024, doc_height = 800;

 

  if (ns4b) {
      doc_width  = self.innerWidth;
      doc_height = self.innerHeight;
   } else if (b4up) {
      doc_width  = document.body.clientWidth;
      doc_height = document.body.clientHeight;
   } else {
      b4up = 1;
   }

 

  dx = new Array();
   xp = new Array();
   yp = new Array();
   am = new Array();
   stx = new Array();
   sty = new Array();
   snowobj = 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 (ns4b)
      {
         if (i == 0) {   document.write('<LAYER NAME="flake'+ i +'" LEFT="15" TOP="15" VISIBILITY="show"><IMG SRC="'+ snowflake +'" BORDER="0" ></a></LAYER>';); } else { document.write('<LAYER NAME="flake'+ i +'" LEFT="15" TOP="15" VISIBILITY="show"><IMG SRC="'+ snowflake +'" BORDER="0" ></LAYER>';); }
      }
      else if (b4up)
      {
         if (i == 0) { document.write('<DIV ID="flake'+ i +'" STYLE="position:absolute; z-index:'+ i +'; visibility:visible; top:15px; left:15px;"><IMG SRC="'+ snowflake + '" BORDER="0"></a></DIV>';); } else { document.write('<DIV ID="flake'+ i +'" STYLE="position:absolute; z-index:'+ i +'; visibility:visible; top:15px; left:15px;"><IMG SRC="'+ snowflake + '" BORDER="0"></DIV>';); }
         snowobj[i] = eval (document.getElementById("flake"+i).style);
      }
   }

 

  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();
   }
      dx[i] += stx[i];
      document.layers["flake"+i].top = yp[i];
      document.layers["flake"+i].left = xp[i]
      + am[i]*Math.sin(dx[i]);
   }
      setTimeout("snowNS()", speed);
   }

 

  function snowDocument() {
   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();
   }
      dx[i] += stx[i];
      snowobj[i].top  = yp[i];
      snowobj[i].left = xp[i] + am[i]*Math.sin(dx[i]);
   }
      setTimeout("snowDocument()", speed);
   }

 

  if (ns4b) {
      snowNS();
   } else if (b4up) {
      snowDocument();
   }
</script>
<div style="position: absolute; z-index: 0; visibility: visible; top: 395.203px; left: 767.029px;" id="flake0"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 1; visibility: visible; top: 368.029px; left: 49.4728px;" id="flake1"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 2; visibility: visible; top: 230.096px; left: 742.436px;" id="flake2"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 3; visibility: visible; top: 360.55px; left: 957.022px;" id="flake3"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 4; visibility: visible; top: 271.726px; left: 211.484px;" id="flake4"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 5; visibility: visible; top: 283.09px; left: 279.892px;" id="flake5"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 6; visibility: visible; top: 410.956px; left: 369.359px;" id="flake6"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 7; visibility: visible; top: 692.613px; left: 89.0148px;" id="flake7"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 8; visibility: visible; top: 534.52px; left: 184.017px;" id="flake8"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 9; visibility: visible; top: 720.301px; left: 176.105px;" id="flake9"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 10; visibility: visible; top: 207.013px; left: 865.224px;" id="flake10"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 11; visibility: visible; top: 411.279px; left: 786.529px;" id="flake11"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 12; visibility: visible; top: 651.409px; left: 303.622px;" id="flake12"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 13; visibility: visible; top: 76.2666px; left: 733.825px;" id="flake13"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 14; visibility: visible; top: 359.395px; left: 894.404px;" id="flake14"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<!-- / Snowfall -->

 


thisone is the snow not mooving
CODE<div style="position: absolute; z-index: 0; visibility: visible; top: 395.203px; left: 767.029px;" id="flake0"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 1; visibility: visible; top: 368.029px; left: 49.4728px;" id="flake1"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 2; visibility: visible; top: 230.096px; left: 742.436px;" id="flake2"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 3; visibility: visible; top: 360.55px; left: 957.022px;" id="flake3"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 4; visibility: visible; top: 271.726px; left: 211.484px;" id="flake4"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 5; visibility: visible; top: 283.09px; left: 279.892px;" id="flake5"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 6; visibility: visible; top: 410.956px; left: 369.359px;" id="flake6"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 7; visibility: visible; top: 692.613px; left: 89.0148px;" id="flake7"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 8; visibility: visible; top: 534.52px; left: 184.017px;" id="flake8"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 9; visibility: visible; top: 720.301px; left: 176.105px;" id="flake9"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 10; visibility: visible; top: 207.013px; left: 865.224px;" id="flake10"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 11; visibility: visible; top: 411.279px; left: 786.529px;" id="flake11"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 12; visibility: visible; top: 651.409px; left: 303.622px;" id="flake12"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 13; visibility: visible; top: 76.2666px; left: 733.825px;" id="flake13"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 14; visibility: visible; top: 359.395px; left: 894.404px;" id="flake14"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>

 


and thisone is yust the mooving snow :
CODE<!-- schneeflocken --> <script type="text/javascript">
   var no =    15;               // number of snowflakes
   var speed = 10;               // the smaler, the faster snowflakes
   var snowflake = "http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif";         // picture source
   var ns4b = (document.layers) ? 1 : 0;   // Netscape4.x
   var b4up = (document.all) ? 1 : 0;      // MSIE4, Opera5, Netccape5
   var dx, xp, yp;               // coordinate and position variables
   var am, stx, sty;               // amplitude and step variables
   var snowobj;
   var i, doc_width = 1024, doc_height = 800;

 

  if (ns4b) {
      doc_width  = self.innerWidth;
      doc_height = self.innerHeight;
   } else if (b4up) {
      doc_width  = document.body.clientWidth;
      doc_height = document.body.clientHeight;
   } else {
      b4up = 1;
   }

 

  dx = new Array();
   xp = new Array();
   yp = new Array();
   am = new Array();
   stx = new Array();
   sty = new Array();
   snowobj = 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 (ns4b)
      {
         if (i == 0) {   document.write('<LAYER NAME="flake'+ i +'" LEFT="15" TOP="15" VISIBILITY="show"><IMG

 

SRC="'+ snowflake +'" BORDER="0" ></a></LAYER>';); } else { document.write('<LAYER NAME="flake'+ i +'" LEFT="15"

 

TOP="15" VISIBILITY="show"><IMG SRC="'+ snowflake +'" BORDER="0" ></LAYER>';); }
      }
      else if (b4up)
      {
         if (i == 0) { document.write('<DIV ID="flake'+ i +'" STYLE="position:absolute; z-index:'+ i +';

 

visibility:visible; top:15px; left:15px;"><IMG SRC="'+ snowflake + '" BORDER="0"></a></DIV>';); } else {

 

document.write('<DIV ID="flake'+ i +'" STYLE="position:absolute; z-index:'+ i +'; visibility:visible; top:15px;

 

left:15px;"><IMG SRC="'+ snowflake + '" BORDER="0"></DIV>';); }
         snowobj[i] = eval (document.getElementById("flake"+i).style);
      }
   }

 

  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();
   }
      dx[i] += stx[i];
      document.layers["flake"+i].top = yp[i];
      document.layers["flake"+i].left = xp[i]
      + am[i]*Math.sin(dx[i]);
   }
      setTimeout("snowNS()", speed);
   }

 

  function snowDocument() {
   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();
   }
      dx[i] += stx[i];
      snowobj[i].top  = yp[i];
      snowobj[i].left = xp[i] + am[i]*Math.sin(dx[i]);
   }
      setTimeout("snowDocument()", speed);
   }

 

  if (ns4b) {
      snowNS();
   } else if (b4up) {
      snowDocument();
   }
</script>
<!-- / Schneeflocken -->

 


the snowflake on your homepage would look like this : http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif

 

but you can change the link if you want to use your own flake xD

 

i know this is not the right place for this posting because this is an image- and design-website but this was the first chance to show my talent  :boulay:

answer
n°2593
Gruzz
Profil: Moderator
Avatar
profil
Posted on 12-13-2007 at 04:42:30 PM  
 

Quote :

i know this is not the right place for this posting because this is an image- and design-website but this was the first chance to show my talent  :boulay:

 

We don't mind that you share this information. :happy2: Thank you! :great: I'm sure people will find this interesting.

answer

Go to:
Add a reply