biffbangpow / silverstripe-webp-detection
简单检测浏览器WebP功能
v1.0.1
2021-07-28 10:52 UTC
Requires
This package is auto-updated.
Last update: 2024-08-28 17:51:20 UTC
README
基于浏览器头部提供基本的WebP支持检测
默认情况下,此扩展应用于SiteTree,这意味着任何扩展此类的页面类都应能够在模板中使用检测
<img alt="Someimage" src="
<% if $WebPSupport %>
$MyImage.ScaleWidth(250).Format('webp').Link
<% else %>
$MyImage.ScaleWidth(250).Link
<% end_if %>
">
(例如,这里使用Image formatter模块生成WebP图像: https://github.com/tractorcow/silverstripe-image-formatter)