blocklyでobjectを動かす。 その12
0
概要
blocklyでobjectを動かして見る。
youtube、やってみた。
写真
ステージを作る。
<div id="outp"></div>
ブロックを書く。
Blockly.Blocks.tube = {
init: function() {
this.jsonInit({
message0: "tube %1",
args0: [{
type: "input_value",
name: "TEXT"
}],
previousStatement: null,
nextStatement: null,
style: "text_blocks",
tooltip: Blockly.Msg.TEXT_PRINT_TOOLTIP,
helpUrl: Blockly.Msg.TEXT_PRINT_HELPURL
})
}
};
フローを書く。
<div id="outp"></div>
Blockly.Blocks.tube = {
init: function() {
this.jsonInit({
message0: "tube %1",
args0: [{
type: "input_value",
name: "TEXT"
}],
previousStatement: null,
nextStatement: null,
style: "text_blocks",
tooltip: Blockly.Msg.TEXT_PRINT_TOOLTIP,
helpUrl: Blockly.Msg.TEXT_PRINT_HELPURL
})
}
};
フローを書く。
objectを書く。
Blockly.JavaScript.tube = function(a) {
return "tube(" + (Blockly.JavaScript.valueToCode(a, "TEXT", Blockly.JavaScript.ORDER_NONE) || "''") + ");\n"
};
var out = document.getElementById("outp");
function tube(src) {
out.innerHTML = '<iframe width="240" height="200" src="https://www.youtube.com/embed/' + src + '" frameborder="0"></iframe>';
}
成果物
Blockly.JavaScript.tube = function(a) {
return "tube(" + (Blockly.JavaScript.valueToCode(a, "TEXT", Blockly.JavaScript.ORDER_NONE) || "''") + ");\n"
};
var out = document.getElementById("outp");
function tube(src) {
out.innerHTML = '<iframe width="240" height="200" src="https://www.youtube.com/embed/' + src + '" frameborder="0"></iframe>';
}
以上。
Author And Source
この問題について(blocklyでobjectを動かす。 その12), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/4b468df19a028f77f0ad著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .