- 注册时间
- 2022-2-3
- 最后登录
- 2022-2-4
- 阅读权限
- 20
- 积分
- 15
- 精华
- 0
- 帖子
- 5
|
<header style="height:120px"></header>
<div id="content-main" class="flexcenter"> <div id="content-body"> </div> </div>
<script type="text/javascript">
let hHeight=document.getElementById('head').offsetHeight;
let wHeight=window.screen.height;
let wWidth=window.screen.width;
let sHtight=wHeight-hHeight
document.getElementById('content-body').style.height=sHtight+"px"
console.info(hHeight,wHeight);
let imgData=new Array();
LInit(1000/60,'content-body',wWidth,sHtight,main);
function main(){
//LGlobal.canvasObj.style.marginTop = hHeight+"px";
// imgData.push({name:"stop_up",path:"./images/slot_stop_up.png"});
// imgData.push({name:"stop_over",path:"./images/slot_stop_over.png"});
imgData.push({name:"start",path:"images/Play.png"});
imgData.push({name:"start2",path:"images/Play2.png"});
imgData.push({name:"kake",path:"images/slot_kake.png"});
// imgData.push({name:"slot_back",path:"./images/slot_back.jpg"});
// imgData.push({name:"slot_ok",path:"./images/slot_ok.png"});
imgData.push({name:"item1",path:"images/red_num_01.png"});
imgData.push({name:"item2",path:"images/red_num_02.png"});
imgData.push({name:"item3",path:"images/red_num_03.png"});
imgData.push({name:"item4",path:"images/red_num_04.png"});
imgData.push({name:"item5",path:"images/red_num_05.png"});
loadingLayer = new LoadingSample1();
addChild(loadingLayer);
LLoadManage.load(
imgData,
function(progress){
loadingLayer.setProgress(progress);
},
function(result){
imglist = result;
removeChild(loadingLayer);
loadingLayer = null;
gameInit();
}
);
}
function gameInit(event){
let size=0.4
let startLayer = new LSprite();
addChild(startLayer);
start = new LButton(new LBitmap(new LBitmapData(imglist["start"])),new LBitmap(new LBitmapData(imglist["start2"])));
start.scaleX=size;
start.scaleY=size;
console.log(start.width)
start.y = 400;
startLayer.addChild(start);
//start.addEventListener(LMouseEvent.MOUSE_UP, onmouseup);
}
|
|