blob: 15124133a4be23f3776e09f91ad3eeb144d856f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$(document).ready(function() {
$(".percentage > div").each(function () {
$(this).css("visibility", "hidden");
});
$(".percentage > div").each(function () {
var width = $(this).width();
$(this).width(0);
$(this).css("visibility", "visible");
$(this).animate({
width: width + "px"
}, 1500 );
});
});
|