404 dinosaur | UKIE WEB var canvas, stage, exportRoot; function init() { canvas = document.getElementById("canvas"); handleComplete(); } function handleComplete() { //This function is always called, irrespective of the content. You can use the variable "stage" after it is created in token create_stage. exportRoot = new lib.dinosaur(); stage = new createjs.Stage(canvas); stage.addChild(exportRoot); //Registers the "tick" event listener. createjs.Ticker.setFPS(lib.properties.fps); createjs.Ticker.addEventListener("tick", stage); //Code to support hidpi screens and responsive scaling. (function(isResp, respDim, isScale, scaleType) { var lastW, lastH, lastS=1; window.addEventListener('resize', resizeCanvas); resizeCanvas(); function resizeCanvas() { var w = lib.properties.width, h = lib.properties.height; var iw = window.innerWidth, ih=window.innerHeight; var pRatio = window.devicePixelRatio, xRatio=iw/w, yRatio=ih/h, sRatio=1; if(isResp) { if((respDim=='width'&&lastW==iw) || (respDim=='height'&&lastH==ih)) { sRatio = lastS; } else if(!isScale) { if(iw<w || ih<h) sRatio = Math.min(xRatio, yRatio); } else if(scaleType==1) { sRatio = Math.min(xRatio, yRatio); } else if(scaleType==2) { sRatio = Math.max(xRatio, yRatio); } } canvas.width = w*pRatio*sRatio; canvas.height = h*pRatio*sRatio; canvas.style.width = w*sRatio-15+'px'; canvas.style.height = h*sRatio-15+'px'; stage.scaleX = pRatio*sRatio; stage.scaleY = pRatio*sRatio; lastW = iw; lastH = ih; lastS = sRatio; } })(true,'both',false,1); }

Sie haben Probleme

Die Seite nach der Sie suchen wurde verschoben, gelöscht oder
hat nie existiert.

Startseite