如果浏览器不支持google swiffy html5内容,如何显示jpg图像

时间:2015-08-13 12:58:32

标签: html5 flash

我使用google swiffy转换了flash动画。但如果浏览器不支持谷歌swiffy转换的Flash内容,如何显示GIF图像?

1 个答案:

答案 0 :(得分:0)

google swiffy使用html5 canvas,您可以检查是否支持html5画布。将图像放在div中,这样您就可以隐藏/取消隐藏检查。 我的项目中有类似的实现,这就是我的工作方式。

                var test_canvas = document.createElement("canvas");                      
          var canvascheck = (test_canvas.getContext) ? true : false ;                     
          if (canvascheck)
             //show the swiffy here and hide the image div                       
          else
            //show the image div