Skip to main content

jQuery : Stop Jsnow Animation

How to stop Jsnow animation?
Hi, Jsnow is one of the light-weight jQuery plug-ins which is producing snow effect. Here, I want snow effect no longer after few seconds of initate and Jsnow is working in background continuously to make snow effect perfect. Obviously, this is affect event handling speed of other javascripts. And In my case, I have to stop Jsnow completely.

So I have added an option variable "stopSnow" and by default it is holding value "0" which is mean run snow forever and then made some changes plugin itself. By changing this value (in milliseconds), I can stop the snow completely.

Plugin Code:
 // jSnow, a jQuery Plugin v1.1.mod2 
 // Licensed under GPL licenses. 
 // Copyright (C) 2009 Nikos "DuMmWiaM" Kontis, dummwiam@gmail.com 
 // http://www.DuMmWiaM.com/jSnow 
 // Modified 2009~

 // Updated in 2009 by Shadowmint (http://shadowmint.blogspot.com/)
 // Updated in 2010 by Serban Boanca (http://www.dj50.ro/)
 // Updated in 2012 by PointerUnits (http://www.pointerunits.com)

 (function ($) { 
   $.fn.jSnow = function (h) { 
     var j = $.extend({}, 
     $.fn.jSnow.defaults, h); 
     var k, WIN_HEIGHT; 
     var l = j.flakes; 
     var m = j.flakeCode; 
     var n = j.flakeColor; 
     var o = j.flakeMinSize; 
     var p = j.flakeMaxSize; 
     var q = j.fallingSpeedMin; 
     var r = j.fallingSpeedMax; 
     var s = j.interval; 
     var t = j.zIndex;
     var vs = j.vSize;
     var fa = j.fadeAway;
     var fs = j.followScroll;
     var stp=j.stopSnow;
     setWaH(); 
    
     var useGif = false
     if ($.browser.msie && (parseFloat($.browser.version) < 8)) 
       useGif = true
     if ($.browser.msie && (parseFloat($.browser.version) < 8) && t == "auto"
       t = 0; 
     var u = $("<div \/>");
     u.css({ 
       width: k + "px"
       height: 1, 
       display: "block"
       overflow: "visible"
       position: "absolute"
       left: "1px"
       zIndex: t 
     });
    
     if (fs) {
       u.css('top',$("html").scrollTop() + 1 + "px");
     } else {
         u.css='1px';
       }
    
     $("body").prepend(u).css({ 
       height: "100%" 
     }); 
     $("html").css({ 
       "overflow-y": "scroll"
       "overflow-x": "hidden" 
     });    var v = Array(); 
     generateFlake(l, false); 
     var animateSnow=setInterval(animateFlakes, s); 
    
     if(stp > 0){
           setTimeout(function(){
             u.fadeOut(2000,function(){clearInterval(animateSnow);u.remove();});
           },stp);
     }
     window.onresize = setWaH; 
     function setWaH() { 
       k = $('body').width();
       if (!vs) {
         WIN_HEIGHT = window.innerHeight || document.documentElement.clientHeight 
         WIN_HEIGHT -= 50;
       } else WIN_HEIGHT = vs;
     };
     if (fs) {
       window.onscroll = function () { 
         u.css({ 
           top: $("html").scrollTop() + "px" 
         }) 
       };
     }
     function generateFlake(a, b) { 
       a = a || 1; 
       b = b || false
       var i = 0; 
       for (i = 0; i < a; i++) { 
         var c = $("<span \/>"); 
         var d = o + Math.floor(Math.random() * p); 
         var e = m[Math.floor(Math.random() * m.length)]; 
         if (e.indexOf(".gif") != -1 || e.indexOf(".png") != -1) { 
           var f = new Image(); 
           if (useGif) 
             e = e.replace("png", "gif"); 
           f.src = e; 
           e = "<img src='" + e + "' alt='jSnowFlake'>" 
         } 
         c.html(e).css({ 
           color: n[Math.floor(Math.random() * n.length)], 
           fontSize: d + "px"
           display: "block"
           position: "absolute"
           cursor: "default"
           "z-index": t 
         }); 
         $(u).append(c); 
         f_left = Math.floor(Math.random() * (k - c.width() - 50)) + 25; 
         f_top = (b) ? -1 * c.height() : Math.floor(Math.random() * (WIN_HEIGHT - 50)); 
         var g = Math.floor(Math.random() * 90); 
         jQuery.data(c, "posData", { 
           top: f_top, 
           left: f_left, 
           rad: Math.random() * 50, 
           i: Math.ceil(q + Math.random() * (r - q)), 
           swingRange: g 
         }); 
         c.css({ 
           top: f_top + "px"
           left: f_left + "px" 
         }); 
         v.push(c) 
       } 
     }; 
     function animateFlakes() { 
       var i = 0; 
       for (i = v.length - 1; i >= 0; i--) { 
         var f = v[i]; 
         var a = jQuery.data(f, "posData"); 
         a.top += a.i; 
         var b = Number(); 
         b = Math.cos((a.rad / 180) * Math.PI); 
         a.rad += 2; 
         var X = a.left - b * a.swingRange;
        
         if (fa) {
           op=(WIN_HEIGHT - a.top < 100) ? ((WIN_HEIGHT - a.top) / 100) : 1;
           f.css('opacity',op);
         }
        
         f.css({ 
           top: a.top + "px",
           left: X + "px"
         });
         if (a.top > WIN_HEIGHT) { 
           jQuery.removeData(f); 
           f.remove(); 
           v.splice(i, 1); 
           generateFlake(1, true
         } 
       } 
     }; 
     return this 
   }; 
   $.fn.jSnow.defaults = { 
     flakes: 30, 
     fallingSpeedMin: 1, 
     fallingSpeedMax: 3, 
     flakeMaxSize: 20, 
     flakeMinSize: 10, 
     flakeCode: ["&bull;"], 
     flakeColor: ["#fff"], 
     zIndex: "auto"
     interval: 50,
     stopSnow:0 //Never stop snow
   } 
 })(jQuery);


Example:

$(function() {
    $().jSnow({
      vSize:'100',
      fadeAway:true,
      stopSnow:3000 //Stop snow after 3 seconds
    });
});

Comments

Popular posts from this blog

Getting key/value pair from JSON object and getting variable name and value from JavaScript object.

 Hi, I had faced one issue like this. I have an JSON object but I don't know any key name but I need to get the all the key and corresponding value from JSON object using client side JavaScript. Suddenly I wondered whether it's possible or not, after that I had done lot of workaround and finally got this solution. See the below example.    function getKeyValueFromJSON() {     var jsonObj =  {a:10,b:20,c:30,d:50} ;     for ( var key in jsonObj) {       alert( "Key: " + key + " value: " + jsonObj[key]);     }  }  In this example I have created the one json array as string, and converted this string into JSON object using eval() function. Using for-each loop I got all the key value from jsonObj, and finally using that key I got the corresponding value.  Finally I got the alert like this,    Key: a value:10    Key: b value:20    Key: c value:30    Key: d value:50  During this workaround I got one more idea, using this same way I got

Simple Login Application Using Spring MVC and Hibernate – Part 1

 I hope developers working in web application development might hear about MVC architecture. Almost all technologies provide support for MVC based web application development, but the success is based on many factors like reusable of the code, maintenance of the code, future adaption of the code, etc..,  The success of the Spring MVC is “ Open for extension and closed for modification ” principle. Using Spring MVC the developers can easily develop MVC based web application. We don’t need any steep learning curve at the same time we need to know the basics of spring framework and MVC architecture. The Spring MVC consists of following important components. 1. Dispatcher servlet 2. Controller 3. View Resolver 4. Model Spring MVC - Overview  The overall architecture of Spring MVC is shown here.  1. When “Dispatcher Servlet” gets any request from client, it finds the corresponding mapped controller for the request and just dispatches the request to the corresponding contro

Simple Login Application Using Spring MVC and Hibernate – Part 2

 I hope you have visited my part1 of my tutorial . Let’s see the steps for integrating hibernate framework into Spring MVC. Here I have used MySQL database. I have created one database called “ springmvc ” and created one table called “ user ” with userid, username, password fields.  I have inserted some records into table like this. Step 1: Creating User POJO class.  We need to create a User POJO class for mapping user table. Ok let’s create it. Step 2: Creating hibernate mapping xml file for user class.  In hibernate we need to create hibernate mapping xml file for all domain class for mapping into corresponding database table. Instead of creating xml file you can use annotation for mapping domain class into database table. This is my mapping xml document created for mapping our user domain class into user database table. Step 3: Creating authenticate service class.  The method “verifyUserNameAndPassword” present in “AuthenticateService”