var id
var j = 1
function remove(){
id = setInterval(function () {
$('.i-am-os[data-id="' + j + '"]').animate({
opacity: '0',
color: '#00000000'
}, 100, function () {
$(this).remove()
})
j++
}, 100);
if(j>22){
clearInterval(id);
}
}