Skip to content

Instantly share code, notes, and snippets.

@ihorduchenko
Created February 28, 2023 22:46
Show Gist options
  • Save ihorduchenko/601df6de85d90ac1412aece50941ecee to your computer and use it in GitHub Desktop.
Save ihorduchenko/601df6de85d90ac1412aece50941ecee to your computer and use it in GitHub Desktop.
Shopify images focal points usage example
{%- if section.settings.main_image != blank -%}
{%- assign focal_point = section.settings.main_image.presentation.focal_point -%}
{%- capture focal_point_css -%}
{%- if focal_point != blank -%}
style="object-position:{{ focal_point.x }}% {{ focal_point.y }}%;"
{%- endif -%}
{%- endcapture -%}
<div class="collection-banner--img img-cover">
<img class="lazyload" data-src="{{ section.settings.main_image | img_url: 'master' }}" alt="Banner" {{ focal_point_css }}>
</div>
{%- endif -%}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment