pixney/statamic-image-generator

此包最新版本(v1.0.0-beta.4)没有提供许可信息。

预缓存由目录定义的statamic图像。

v1.0.0-beta.4 2020-09-21 14:08 UTC

This package is auto-updated.

Last update: 2024-09-21 23:14:34 UTC


README

一个插件,允许您按目录定义图像大小,并在运行命令时预缓存图像,从而加快网站访问速度并防止超时问题。

灵感来源于https://github.com/spatie/statamic-responsive-images

安装

composer require "pixney/statamic-image-generator"

php artisan vendor:publish -> image-generator-configuration php artisan vendor:publish -> image-generator-views

标签 -

{{ picture:image 
    class="image another-image-class"  
    attributes='data-nameit="add value here"' 
    alt=image.alt
}}
<picture>
   <source media="(max-width: 414px)" srcset="http://statamic.test/img/containers/assets/news/news-test/GPD_36_OOH_6-compressor.jpg/47e3a18fe78dbec3a83256d4f5860726.webp" type="image/webp">
   <source media="(max-width: 414px)" srcset="http://statamic.test/img/containers/assets/news/news-test/GPD_36_OOH_6-compressor.jpg/435a59ed059b2661f5bf7350e023ac94.jpg">
   <source media="(max-width: 768px)" srcset="http://statamic.test/img/containers/assets/news/news-test/GPD_36_OOH_6-compressor.jpg/32642c722308ab03fb72ae20ae8dcaba.webp" type="image/webp">
   <source media="(max-width: 768px)" srcset="http://statamic.test/img/containers/assets/news/news-test/GPD_36_OOH_6-compressor.jpg/1ae31e8d381e20a6ae1cb259de15c166.jpg">
   <source media="(max-width: 1024px)" srcset="http://statamic.test/img/containers/assets/news/news-test/GPD_36_OOH_6-compressor.jpg/7fb8c7d4ba1304739e024e77de9f7b38.webp" type="image/webp">
   <source media="(max-width: 1024px)" srcset="http://statamic.test/img/containers/assets/news/news-test/GPD_36_OOH_6-compressor.jpg/a8e3ac2a831c911627ae758476fbf1b8.jpg">
   <img src="http://statamic.test/assets/news/news-test/GPD_36_OOH_6-compressor.jpg" alt="I am the alt text" class="image another-image-class" data-nameit="add value here">
</picture>