How to view webp format on ie11

后端 未结 1 1121
一向
一向 2021-01-14 13:33

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 can

相关标签:
1条回答
  • 2021-01-14 14:04

    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.com/webp-hero@0.0.0-dev.21/dist-cjs/polyfills.js"></script>
    <script src="https://unpkg.com/webp-hero@0.0.0-dev.21/dist-cjs/webp-hero.bundle.js"></script>
    <script>
     var webpMachine = new webpHero.WebpMachine();
     webpMachine.polyfillDocument();
    </script>
    
    0 讨论(0)
提交回复
热议问题