mblode/svgplaceholder
最新稳定版本:1.0.3
Composer 安装命令:
composer require mblode/svgplaceholder
包简介
A plugin which generates an invisible SVG of specific dimensions for use when lazyloading images in Craft CMS templates.
README 文档
README
A plugin which generates an invisible SVG of specific dimensions for use when lazyloading images in Craft CMS templates.
Requirements
This plugin requires Craft CMS 3.0.0-beta.23 or later.
Installation
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project -
Then tell Composer to load the plugin:
composer require mblode/svgplaceholder -
In the Control Panel, go to Settings → Plugins and click the “Install” button for svgplaceholder.
Usage
{{ craft.svgplaceholder.generate({height:500,width:'300'}) }}
Optionally add a background color with the fill attribute:
{{ craft.svgplaceholder.generate({height:500,width:'300'},'#CCCCCC') }}
Example
When used with Lazysizes and a macro:
_macros/utilities.html
{% macro lazyLoadImage(element, transform) %}
{% cache using key element.id %}
<img class="lazyload" src="{{ craft.svgplaceholder.generate({ height: element.height(transform), width: element.width(transform) }) }}" data-src="{{ element.url(transform) }}" alt="{{ element.title }}">
{% endcache %}
{% endmacro %}
index.html
{% import '_macros/utilities' as utils %}
...
{{ utils.lazyLoadImage(image, 'imageTransformName') }}
Brought to you by Matthew Blode
Based on the Craft CMS 2 plugin: SVG Placeholder
统计信息
- 总下载量: 7.22k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-09-08