0👍
You are pushing at the end of the audioLogItems
array.
If you want to see the first element being animated, you need to push it at the head of the array.
Try to use unshift.
this.audioLogItems.unshift({id: this.logId});
Source:stackexchange.com