admin管理员组

文章数量:1341686

Is there anyway to view webp image format on IE11 or can convert it to another format with javascript code on this browser? I tried "picture" element but seems like it cann't work like Chrome62

Is there anyway to view webp image format on IE11 or can convert it to another format with javascript code on this browser? I tried "picture" element but seems like it cann't work like Chrome62

Share Improve this question asked Dec 5, 2017 at 22:09 Hâm ZonHâm Zon 1151 gold badge2 silver badges8 bronze badges 3
  • 3 see caniuse./#feat=webp ... look in resources for polyfills ... though, IE11 doesn't support webm either, so you may be stuck – Jaromanda X Commented Dec 5, 2017 at 22:21
  • please give me a hint to convert webp to another format (png, jpg) with javascript – Hâm Zon Commented Dec 5, 2017 at 23:04
  • 1 hint: IE11 doesn't support webp or webm ... so ... {rock} ... you ... {hard place} – Jaromanda X Commented Dec 5, 2017 at 23:08
Add a ment  | 

1 Answer 1

Reset to default 13

This is also a very easy-to-use and effective polyfill for rendering WebP images on IE or other browsers which do not support WebP rendering. Here is how to use it:-

<script src="https://unpkg./[email protected]/dist-cjs/polyfills.js"></script>
<script src="https://unpkg./[email protected]/dist-cjs/webp-hero.bundle.js"></script>
<script>
 var webpMachine = new webpHero.WebpMachine();
 webpMachine.polyfillDocument();
</script>

本文标签: javascriptHow to view webp format on ie11Stack Overflow