$(function() {
setInterval(function() {
$('#packet figure:nth-of-type(2)').css('right', '100vw');
$('#packet figure:nth-of-type(2)').animate({
'right': '0vw',
}, {
'duration': 160,
'easing': 'linear'
})
}, 170);
setInterval(function() {
$('#packet figure:first-of-type').css('right', '100vw');
$('#packet figure:first-of-type').animate({
'right': '0vw',
}, {
'duration': 90,
'easing': 'linear'
})
}, 100);
setInterval(function() {
$('#packet figure:last-of-type').css('right', '100vw');
$('#packet figure:last-of-type').animate({
'right': '0vw',
}, {
'duration': 180,
'easing': 'linear'
})
}, 200);
});