<div class="mouse_trail_effect js-mouse-trail-effect-container js-mouse-trail-effect">
    <figure class="mouse_trail_effect_images">

        <img class="active js-mouse-trail-effect-image mouse_trail_effect_image" srcset="https://images.fastspot.com/vcuarts/1440x617/1 1440w, https://images.fastspot.com/vcuarts/1220x523/1 1220w, https://images.fastspot.com/vcuarts/980x420/1 980w, https://images.fastspot.com/vcuarts/740x317/1 740w, https://images.fastspot.com/vcuarts/500x214/1 500w, https://images.fastspot.com/vcuarts/300x129/1 300w" sizes="(min-width: 980px) 100vw, 0" src="https://images.fastspot.com/vcuarts/300x129/1" alt="" loading="lazy" width="300" height="129">

        <img class="js-mouse-trail-effect-image mouse_trail_effect_image" srcset="https://images.fastspot.com/vcuarts/1440x617/2 1440w, https://images.fastspot.com/vcuarts/1220x523/2 1220w, https://images.fastspot.com/vcuarts/980x420/2 980w, https://images.fastspot.com/vcuarts/740x317/2 740w, https://images.fastspot.com/vcuarts/500x214/2 500w, https://images.fastspot.com/vcuarts/300x129/2 300w" sizes="(min-width: 980px) 100vw, 0" src="https://images.fastspot.com/vcuarts/300x129/2" alt="" loading="lazy" width="300" height="129">

        <img class="js-mouse-trail-effect-image mouse_trail_effect_image" srcset="https://images.fastspot.com/vcuarts/1440x617/3 1440w, https://images.fastspot.com/vcuarts/1220x523/3 1220w, https://images.fastspot.com/vcuarts/980x420/3 980w, https://images.fastspot.com/vcuarts/740x317/3 740w, https://images.fastspot.com/vcuarts/500x214/3 500w, https://images.fastspot.com/vcuarts/300x129/3 300w" sizes="(min-width: 980px) 100vw, 0" src="https://images.fastspot.com/vcuarts/300x129/3" alt="" loading="lazy" width="300" height="129">
    </figure>
    <canvas class="js-mouse-trail-effect-canvas mouse_trail_effect_canvas"></canvas>
</div>
{#
	{% include "@partial-mouse-trail-effect" with {
		class: '',
		images: []
	} %}
#}

<div class="mouse_trail_effect js-mouse-trail-effect-container {{class}}">
	<figure class="mouse_trail_effect_images">
		{% for image in images %}
			{% include '@partial-image' with {
				class: (loop.index == 1 ? 'active ' : '') ~ 'js-mouse-trail-effect-image mouse_trail_effect',
				alt: '',
				image: image,
				loading: 'lazy',
				sources: [
					img.ultrawide.xlrg,
					img.ultrawide.lrg,
					img.ultrawide.med,
					img.ultrawide.sml,
					img.ultrawide.xsml,
					img.ultrawide.xxsml
				],
				sizes: [
					"(min-width: 980px) 100vw",
					"0"
				]
			} %}
		{% endfor %}
	</figure>
	<canvas class="js-mouse-trail-effect-canvas mouse_trail_effect_canvas"></canvas>
</div>

No notes defined.