biffbangpow/silverstripe-webp-detection

简单检测浏览器WebP功能

安装: 458

依赖: 1

建议: 0

安全性: 0

星星: 1

关注者: 3

分支: 1

开放问题: 0

类型:silverstripe-vendormodule

v1.0.1 2021-07-28 10:52 UTC

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