我使用google swiffy将swf文件转换为html5。
但是现在google已经将运行时升级到v 5.2,并且不能使用透明的背景。
在使用swf文件中的google swiffy html5的运行时v 4.9之前,在google代码中,为了使用透明背景,我从javascript文件中删除了这个:

"backgroundColor":-1,

但是现在runtime升级到了v5.2,我不能从swiffy文件中删除背景色
https://www.gstatic.com/swiffy/v5.2/runtime.js

最佳答案

此解决方案与flash cs5->swiffy v5.3完美结合!

#swiffycontainer rect {
    background: none !important;
    display:none !important;
}

09-20 03:17