from real users"; } else { return "Preparing " + likes + " from a real user"; } } else if(message == 2){ return "Sending " + likes + "
" + " filtered by location"; } else if(message == 3){ return "Sending " + likes + "
" + " filtered by gender"; } } this.spawnMessage = function(){ var likes = this.generateLikes(), contents = this.generateMessage(likes), instance = this.message_model.clone().appendTo(this.message_mount); instance.find("p").html(contents); setTimeout(function(instance){ instance.addClass("fade-in") }.bind(this, instance), this.options.animation_delays.fadein); setTimeout(function(likes){ this.increaseCounter(likes); }.bind(this, likes), this.options.counter_increase); setTimeout(function(instance){ instance.addClass("slide-down"); }.bind(this, instance), this.options.animation_delays.slidedown); setTimeout(function(instance){ instance.remove(); }.bind(this, instance), this.options.animation_delays.remove); } this.setMessages = function(){ this.spawnMessage(); setInterval(this.spawnMessage.bind(this), this.options.frequency); } this.formatNumber = function(number){ if(typeof(number) === "string"){ //noop } else if(typeof(number) === "number"){ number = number.toString(); } else { throw new Error("LandingCounter::formatNumber invalid type"); } var formatted = ""; for(var i = number.length - 1; i >= 0; i--){ formatted = number[i] + formatted; if(i < (number.length - 1) && i > 0 && (i - number.length) % 3 == 0){ formatted = "," + formatted; } } return formatted; } this.increaseCounter = function(likes){ this.total += likes; this.setCounter(); if(!this.prevent_local_storage_access){ try{ window.localStorage.setItem("total_likes_delivered", this.total); } catch(e){ console.log(e); } } } this.setCounter = function(){ this.counter_total.text(this.formatNumber(this.total)); } this.setSpread = function(){ //Get average likes per second (where 86400 = 24 * 60^2) var increase_pace = this.daily_pace / 86400; if(increase_pace - 1 < 1){ this.spread.min = 1; } else { this.spread.min = Math.floor(increase_pace - 1); } this.spread.max = Math.ceil(increase_pace + 1); } this.setIncreaseInterval = function(){ this.setSpread(); } this.updateTotal = function(){ } this.loadTotal = function(){ try{ return window.localStorage.getItem("total_likes_delivered"); } catch(e){ console.log(e); this.prevent_local_storage_access = true; return null; } } this.set = function(total, pace, options){ var saved = this.loadTotal(); if(saved && saved > total){ this.total = parseInt(saved); } else { this.total = total; } this.daily_pace = pace; /* options _frequency_ at least slidedown plus an extra milliseconds _animation_delays_ _fadein_ and _slidedown_ should be at least 800 _remove_ should be at least 2800 */ if(options){ if(options.frequency){ this.options.frequency = options.frequency; } if(options.counter_increase){ this.options.counter_increase = options.counter_increase; } if(options.animation_delays){ if(options.animation_delays.fadein){ this.options.animation_delays.fadein = options.animation_delays.fadein; } if(options.animation_delays.slidedown){ this.options.animation_delays.slidedown = options.animation_delays.slidedown; } if(options.animation_delays.remove){ this.options.animation_delays.remove = options.animation_delays.remove; } } } this.setCounter(); this.setIncreaseInterval(); this.setMessages(); return this; } } $(document).ready(function(){ var carousel = new Carousel().init("#reviews-carousel"); var landing_counter = new LandingCounter("#counter-widget-wrapper").set(delievered, daily_pace, { frequency: 4000, counter_increase: 800, animation_delays: { fadein: 100, slidedown: 1550, remove: 3600 } }); });