How to pause for a measured time in Elm?

Viewed 263

I am attempting to create a simple web page using Elm which involves displaying an image for a measured amount of time, such as a second or a millisecond.

Is there a way to "pause" in Elm? Then I could display, pause, and then remove the image to achieve the effect.

I noticed the clock example but that appears to update every time the machine's clock triggers a new second, whereas I am looking for something that can pause to update a set time (such as a fraction of a second) after the starting time.

2 Answers
Related