我使用google swiffy转换了flash动画。但如果浏览器不支持谷歌swiffy转换的Flash内容,如何显示GIF图像?
答案 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