Created
December 23, 2015 01:07
-
-
Save simon1400/f6507750c8539292c7cb to your computer and use it in GitHub Desktop.
Waipoint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Начисления значений числам | |
В Html к тому тегу в котором нужно начислить, прописать "data-count='число к которому нужно начислить'" | |
*/ | |
$(".sec_1").waypoint(function() { //Дойдя до какого класа | |
$({blurRadius: 5}).animate({blurRadius: 0}, { | |
duration: 1200, //Скорость | |
easing: 'swing', | |
step: function() { | |
$(".sec_1_content h3 span").css({ //К какому классу применить | |
"-webkit-filter": "blur("+this.blurRadius+"px)", | |
"filter": "blur("+this.blurRadius+"px)" | |
}); | |
} | |
}); | |
var comma_separator_number_step = $.animateNumber.numberStepFactories.separator(' '); | |
$(".sec_1_content h3 span").each(function() { //К какому классу применить | |
var tcount = $(this).data("count"); | |
$(this).animateNumber({ number: tcount, | |
easing: 'easeInQuad', | |
"font-size": "1.8125em", //какой конечный розмер цифр | |
numberStep: comma_separator_number_step}, | |
1200); //Скорость | |
}); | |
this.destroy(); | |
}, { | |
offset: "70%" //Сколько процентов от класса осталось до верхней границу окна что б сработало | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment