Shopify的字体库Font引用代码、引入js、引入css

2023-12-13 17:32:54

Shopify引入js文件
通过{{ 'notification.js' | asset_url | script_tag }}这样的方式引入,直接通过script传统引入可能不生效

[更新] 这是一个更好的方法,完全省略了 sytlesheet_tag 函数:

<link rel='stylesheet' media='screen and (device-aspect-ratio: 40/71)' href='{{ 'mobile.css' | asset_url }}' />

旧: 正常包含 Assets :

{{ 'mobile.css' | asset_url | stylesheet_tag }}

Shopify的字体库Font引用代码

{%- comment -%}Style 字体{%- endcomment -%}
{%- liquid
  style
    assign var_fonts = 'body-font,header-font' | split: ','
    assign font_handles = 'type_body_font,type_header_font' | split: ','
    assign weights = '100,200,300,400,500,600,700,900' | split: ','
    for font_handle in font_handles
      assign font = settings[font_handle]
      for weight in weights
        echo font | font_modify: 'weight', weight | font_face: s: 'swap'
      endfor
      echo ":root {--" | append: var_fonts[forloop.index0] | append: ":" | append: font.family | append: ';}'
    endfor
  endstyle
-%}

文章来源:https://blog.csdn.net/withkai44/article/details/134974469
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。