LoginSignup
0
0

More than 1 year has passed since last update.

plunkerでruffle

Posted at

概要

plunkerでruffleやってみた。

サンプルコード


var swfobject = {};
swfobject.embedSWF = function(url, id, width, height) {
  var ruffle = window.RufflePlayer.newest();
  var player = Object.assign(document.getElementById(id).appendChild(ruffle.createPlayer()), {
    width: width,
    height: height,
    style: 'width: ' + width + 'px; height: ' + height + 'px',
  });
  player.load({ 
    url: url 
  });
}
swfobject.embedSWF('https://e9x.github.io/ruffle/1on1soccer_24.swf', 'ruffle', 300, 300);



成果物

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0