Hi, currently the 1st images that gets loaded on my website are the posters associated with video section, which are basically assigned using poster in video_tag.
{{
block.settings.video
| video_tag:
loop: 'loop',
muted: false,
playsinline: true,
autoplay: false,
onclick: 'vid_function(this);',
id: block.settings.video.id,
class: 'video-player',
poster: poster_path
}}
My question is how to lazyload these poster images when the video section is much lower in website, and prioritize images of other sections which are much above the video section?