我正在尝试使用<source>
标签在 Laravel刀片服务器中显示我的图像。
<picture>
<source srcset="{{asset('images/img1.webp')}}" type="image/webp">
<source srcset="{{asset('images/img1.png')}}" type="image/png">
</picture>
但是图片未显示。浏览器控制台中也没有错误。
如果我查看页面源代码,则代码存在,图像路径也正确。我正在使用 Laravel 5.8.32 。
我在其他 non-laravel 项目中使用了相同的代码,例如:
<picture>
<source srcset="/images/img1.webp" type="image/webp">
<source srcset="/images/img1.png" type="image/png">
</picture>
,效果很好。 我也在Laravel中尝试了此路径,但仍然无法正常工作。
如何使它正常工作?还是刀片不支持source
标签?