We zijn de 47de week van 2025
Foto
Inhoud blog
  • Winter
  • Natuur foto
  • Foto camera
  • Photoshop
    Zoeken in blog

    Archief per maand
  • 11-2025
  • 10-2025
  • 09-2025
  • 08-2025
  • 07-2025
  • 06-2025
  • 05-2025
  • 04-2025
  • 03-2025
  • 02-2025
  • 01-2025
  • 07-2024
  • 06-2024
  • 05-2024
  • 04-2024
  • 03-2024
  • 02-2024
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Foto
    Welkom bij PowerPoint 't Voske


    22-11-2025
    Klik hier om een link te hebben waarmee u dit artikel later terug kunt lezen.

    %%%FOTO1%%%


    // <![CDATA[

    var speed=33; // lower number for faster

    var flakes=100; // number of flakes

    var colour="#fff"; // colour of flakes

    var slush=20; // set to '0' for no slush or otherwise set to height at which slush melts


    /***************************

    *     Let It Snow Effect    *

    *(c)2004-12 mf2fm web-design*

    *  http://www.mf2fm.com/rv  *

    * DON'T EDIT BELOW THIS BOX *

    ***************************/

    var flks=new Array();

    var flkx=new Array();

    var flky=new Array();

    var fldy=new Array();

    var slss=new Array();

    var slsh=new Array();

    var swide, shigh, boddie;


    function addLoadEvent(funky) {

      var oldonload=window.onload;

      if (typeof(oldonload)!='function') window.onload=funky;

      else window.onload=function() {

        if (oldonload) oldonload();

        funky();

      }

    }


    addLoadEvent(baby_its_cold_outside);


    function baby_its_cold_outside() { if (document.getElementById) {

      var i;

      boddie=document.createElement("div");

      boddie.style.position="fixed";

      boddie.style.top="0px";

      boddie.style.left="0px";

      boddie.style.overflow="visible";

      boddie.style.width="1px";

      boddie.style.height="1px";

      boddie.style.backgroundColor="transparent";

      document.body.appendChild(boddie);

      set_width();

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

        flks[i]=createDiv(3, 3, colour);

        flkx[i]=3*Math.floor(Math.random()*swide/3);

        flky[i]=Math.floor(Math.random()*shigh);

        fldy[i]=2+Math.floor(Math.random()*4);

        flks[i].style.left=flkx[i]+"px";

        flks[i].style.top=flky[i]+"px";

        boddie.appendChild(flks[i]);

      }

      setInterval("let_it_snow()", speed);

    }}


    function createDiv(height, width, colour) {

      var div=document.createElement("div");

      div.style.position="absolute";

      div.style.height=height+"px";

      div.style.width=width+"px";

      div.style.overflow="hidden";

      div.style.backgroundColor=colour;

      return (div);

    }


    window.onresize=set_width;

    function set_width() {

      var sw_min=999999;

      var sh_min=999999;

      if (document.documentElement && document.documentElement.clientWidth) {

        if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;

        if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;

      }

      if (typeof(self.innerWidth)=='number' && self.innerWidth) {

        if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;

        if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;

      }

      if (document.body.clientWidth) {

        if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;

        if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;

      }

      if (sw_min==999999 || sh_min==999999) {

        sw_min=800;

        sh_min=600;

      }

      swide=sw_min-3;

      shigh=sh_min;

      if (slush) {

        if (swide/3>slss.length) for (i=slss.length; i<swide/3; i++) {

          if (!slsh[i]) slsh[i]=3;

          slss[i]=createDiv(slsh[i], 3, colour);

          boddie.appendChild(slss[i]);

        }

        for (i=0; i<swide/3; i++) {

          slss[i].style.height=slsh[i]+"px";

          slss[i].style.top=shigh-slsh[i]+"px";

          slss[i].style.left=3*i+"px";

        }

        if (i<slss.length && slss[i].style.left!="-3px") for (; i<slss.length; i++) slss[i].style.left="-3px";

      }

    }


    function let_it_snow(c) {

      var i, x, o=0, z=0;

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

        flky[i]+=fldy[i];

    x=Math.floor(flkx[i]/3);

        if (slush) {

          o+=slsh[x];

          if (flky[i]>=shigh-slsh[x]) {

            if (x<swide && slsh[x]>slsh[x+1]+3) x++;

            else if (x>0 && slsh[x]>slsh[x-1]+3) x--;

            slss[x].style.top=shigh-(slsh[x]+=3)+"px";

            slss[x].style.height=slsh[x]+"px";

    flky[i]=shigh;

      }

        }

        if (flky[i]>=shigh || flkx[i]>swide) {

      flky[i]=0;

      fldy[i]=2+Math.floor(Math.random()*4);

      flkx[i]=3*Math.floor(Math.random()*swide/3);

      flks[i].style.left=flkx[i]+"px";

      z++;

    }

    flks[i].style.top=flky[i]+"px";

      }

      if (o>flakes*slush) for (i=0; i<slsh.length; i++) if (slsh[i]>3) slsh[i]--;

      if (z || o>flakes*slush) set_width();

    }

    // ]]>



    >> Reageer (0)
    27-09-2025
    Klik hier om een link te hebben waarmee u dit artikel later terug kunt lezen.

    %%%FOTO1%%%

    %%%FOTO2%%%


    >> Reageer (0)


    Over mijzelf
    Ik ben Dirk, en gebruik soms ook wel de schuilnaam Fox.
    Ik ben een man en woon in (Nederland) en mijn beroep is Pensioen.
    Ik ben geboren op 21/09/1938 en ben nu dus 87 jaar jong.
    Mijn hobby's zijn: Computeren.
    Photoshop PSP fotograferen en fietsen.
    Foto


    Gastenboek
  • Zondagsgroetjes
  • Zaterdagsgroetjes
  • Goedemorgen lieve Dirk
  • MOJI MILÍ KAMARÁDI
  • Vrijdagsgroetjes

    Druk oponderstaande knop om een berichtje achter te laten in mijn gastenboek


    Foto

    Foto


    Blog als favoriet !

    Welkom op mijn blog Powerpoint & Photoshop

    Beoordeel dit blog
      Zeer goed
      Goed
      Voldoende
      Nog wat bijwerken
      Nog veel werk aan
     

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Foto

    Mijn favorieten
  • Jose
  • Janelen
  • Chrisje
  • Charlotte
  • Clair
  • Monique
  • Maarten
  • Dini

    Mijn favorieten
  • Rud
  • Jos JVG
  • Krikie
  • Eddy
  • Eddy Meuris
  • Benthe
  • Steffie
  • Sky

    Mijn favorieten
  • Harmke
  • Myriam
  • Eddy Oostende
  • Marianne
  • Westhoek
  • Nadia
  • Julien
  • Willy Duvel
  • Jeannie
  • Beiters

    Mijn favorieten
  • Willy
  • Hennie
  • Annie2011
  • PPS Roosje
  • Henk en Anneke
  • Wimpie
  • Christine
  • Meeuw
  • Anneke
  • Leen

    Mijn favorieten
  • Sylbart
  • Natoken
  • Roske
  • Allerlei
  • Patricia
  • Redpoppy
  • Simonnetje
  • Annie
  • Jan
  • Diana Oostende

    Mijn favorieten
  • Alfons
  • Mariska
  • Klaproosje
  • Maria 1
  • Franqois
  • Corba Jack
  • Albert & Lenie
  • jJosyce
  • Alois
  • Dushy

    Mijn favorieten
  • Uwe Zielonke
  • Bruni & Yorkies
  • Cesko
  • Vlasta

    Mijn favorieten
  • Snoopie 2
  • Schreibi
  • Omis 1
  • Heidi
  • Renate

    Blog als favoriet !

    Een interessant adres?

    Een interessant adres?

    Blog als favoriet !

    Blog als favoriet !

    Blog als favoriet !

    Categorieën


    Blog tegen de regels? Meld het ons!
    Gratis blog op http://blog.seniorennet.nl - SeniorenNet Blogs, eenvoudig, gratis en snel jou eigen blog!