Hide an image after 5 seconds

I have an image that is already delayed using wix animation. However, once it post up I want it to disappear after 5 seconds. Can I get some help please?
Here is the link to the website. The image the pops of that says 50th anniversary is the one that I want to hide after 5 seconds.
Thanks so much for your help.

This -----> Window setTimeout() Method URL might help you out.

Thank you Geo. These are great, but none of the examples will help me as I am not needing to click for any actions. I am also not opening a new window.

setTimeout(function() {
$(‘#yourImage’).hide(); },
1000); // ← time in milliseconds

Thank you Geo. This is how I have entered the code and I am not getting the results.