si con jquery y la propiedad animate, modificamos un poco la estructura y hacemos esto
Código Javascript
:
Ver original$(document).ready(function(){
$('#photo').animate({
width: 50+"%",
});
$('#In').animate({
width: 70+"%",
});
$('#Ill').animate({
width: 90+"%",
});
})
Código CSS:
Ver original.contenedor{
width:500px;
}
.barra{
position:relative;
height:30px;
background-color:#D5D5D5;
width:100%;
padding-top:5px;
}
.texto{
position:absolute;
padding-top:4px;
padding-left:10px;
}
.color{
position: absolute;
background-color: #00BDE4;
height: 25px;
}
Aqui el ejemplo actualizado:
http://jsfiddle.net/L6kzb49h/1/