mirror of
https://github.com/Aider-AI/aider
synced 2026-05-14 02:46:54 +02:00
# Aider chat conversation: USER: add the highlight image as the thumbnail that will show before the <video> tag plays ASSISTANT: To add the highlight image as a thumbnail that shows before the video plays, we can use the `poster` attribute on the `<video>` tag. Here is the *SEARCH/REPLACE* block: _posts/2024-05-02-browser.md <source> <<<<<<< SEARCH <video width="704" height="720" controls> ======= <video width="704" height="720" controls poster="/assets/browser.jpg"> >>>>>>> REPLACE </source> The `poster` attribute specifies an image to be shown while the video is downloading, or until the user hits the play button. This will display the `browser.jpg` image before the video starts playing.