console-hub/html/games.js
2019-06-22 21:15:38 +02:00

10 lines
312 B
JavaScript

function startGame(int){
if(int == 0){//SLIMEY JUMP
var game = document.createElement('iframe');
game.id = 'frame';
game.src = "https://v6p9d9t4.ssl.hwcdn.net/html/1493204/index.html";
game.style.position = 'fixed';
game.style.width = '100%';
game.style.zIndex = '990';
}
}