facebook twitter hatena line email

「Flash/代替/swf2js」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
行2: 行2:
 
swfファイルをhtml5で動作させるjsライブラリ
 
swfファイルをhtml5で動作させるjsライブラリ
  
参考:
+
参考:https://twitter.com/TANAKA_U/status/1645457315401994242
https://twitter.com/TANAKA_U/status/1645457315401994242
+
  
 +
参考:https://fedor-hidor.blog.jp/archives/21214199.html
 
==ダウンロード==
 
==ダウンロード==
 
https://github.com/swf2js/swf2js
 
https://github.com/swf2js/swf2js

2024年3月3日 (日) 04:45時点における版

swf2jsとは

swfファイルをhtml5で動作させるjsライブラリ

参考:https://twitter.com/TANAKA_U/status/1645457315401994242

参考:https://fedor-hidor.blog.jp/archives/21214199.html

ダウンロード

https://github.com/swf2js/swf2js

インストール

swf2js.jsだけを公開dirへupload

<html>
<body>
<head>
    <script type="text/javascript" src="/js/swf2js.js"></script>
</head>
<body>
    <script type="text/javascript">
        swf2js.load("/swf/helloworld.swf");
    </script>
</body>
</html>