javascript - WebP images doesn't display in safari although added polyfill - Stack Overflow

Google insight told me to convert my JPG images to WebP. It reduced wieght of every image by a half but

Google insight told me to convert my JPG images to WebP. It reduced wieght of every image by a half but the issue is that Safari (probably worst browser even edge better please don't use it so it will die) on Mac doesn't display webP.

I've added this script to my app which I believe is polyfill but it didn't help. Also it's written there to download both files but webpjs-0.0.2.swf is broken link. Is there some working polyfill?

Most of images are served as background images often as binded inline styles. So for example this polyfill won't work because css support is plan for a future.

In turn this have lack of documentation around css/inline-style and also need some work to be done to replace path in every image in every ponent.

If you have mac and safari - live demo

Google insight told me to convert my JPG images to WebP. It reduced wieght of every image by a half but the issue is that Safari (probably worst browser even edge better please don't use it so it will die) on Mac doesn't display webP.

I've added this script to my app which I believe is polyfill but it didn't help. Also it's written there to download both files but webpjs-0.0.2.swf is broken link. Is there some working polyfill?

Most of images are served as background images often as binded inline styles. So for example this polyfill won't work because css support is plan for a future.

In turn this have lack of documentation around css/inline-style and also need some work to be done to replace path in every image in every ponent.

If you have mac and safari - live demo

Share Improve this question asked Mar 15, 2019 at 21:50 BT101BT101 3,84611 gold badges48 silver badges101 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

I custom built modernizr just took WebP checker from it and then used this approches:

for HTML image:

<picture>
  <source srcset="img/awesomeWebPImage.webp" type="image/webp">
  <source srcset="img/creakyOldJPEG.jpg" type="image/jpeg"> 
  <img src="img/creakyOldJPEG.jpg" alt="Alt Text!">
</picture>

for CSS image:

.no-webp .elementWithBackgroundImage {
  background-image: url("image.jpg");
}

.webp .elementWithBackgroundImage{
  background-image: url("image.webp");
}

for passing image link as props (within Vue2 application or any other front-end framework):

document.querySelector("html").classList[0] === 'webp' ? this.webpEnabled = true : this.webpEnabled = false;
this.webpEnabled ? this.currentImages = this.imagesWebp : this.currentImages = this.imagesJpeg

<some-ponent :image="currentImages[0]"></some-ponent>

If you're looking for a simple (no JS) solution to the problem of .webp images failing to display as CSS background images on Safari, you can just reach for the CSS background property:

background: url(image-filename.webp) center/contain no-repeat,
            url(image-filename.jpg) center/contain no-repeat;

The order of the images is strange, as it feels like you should put the older format after the .webp file.

Anyway, this provides a fallback image for Safari and other lesser browsers to use.

EDIT

The answer above works, but it's not a good solution as browsers just end up downloading both the images.

The "real" answer to using .webp cross-browser seems to require Modernizr and browser detection with JS - see here:

https://css-tricks./using-webp-images/#article-header-id-4

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743593312a4476004.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信