修改开房间邀请对战的提示
This commit is contained in:
parent
9f27eae322
commit
fd52bb4cf0
1
.gitignore
vendored
1
.gitignore
vendored
@ -16,3 +16,4 @@ rev-manifest.json
|
||||
/nohup.out
|
||||
/package-lock.json
|
||||
/dist.tar.gz
|
||||
/roms
|
||||
|
20
fc/dist/gbajs.min.css
vendored
20
fc/dist/gbajs.min.css
vendored
@ -526,13 +526,23 @@ canvas {
|
||||
right: 0;
|
||||
}
|
||||
.info-mask {
|
||||
position: fixed;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
background-color: #fff;
|
||||
background-image:url(../resources/invite-mask.png);
|
||||
width: 110vw;
|
||||
height: 250vw;
|
||||
background-color: #000;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
background-image:url(../resources/invite-mask.jpg);
|
||||
background-repeat:no-repeat;
|
||||
background-size: 100%
|
||||
}
|
||||
#mask-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
}
|
||||
.container::-webkit-scrollbar {
|
||||
display: none; //Safari and Chrome
|
||||
}
|
||||
|
@ -54,7 +54,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class='info-mask' id='info-mask' style="display: none;">
|
||||
|
||||
<!-- <img id='mask-img' src='resources/invite-mask.jpg'> -->
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
@ -151,8 +151,8 @@ window.vm = {
|
||||
|
||||
window.onload = function(){
|
||||
var gameId = getParameter("id")
|
||||
var path = "http://h5games-al.kingsome.cn/emulator-static/roms/" + gameId + ".nes"
|
||||
// var path = "http://192.168.100.228:7000/emu/roms/" + gameId + ".nes"
|
||||
// var path = "http://h5games-al.kingsome.cn/emulator-static/roms/" + gameId + ".nes"
|
||||
var path = "http://192.168.100.229:7008/roms/" + gameId + ".nes"
|
||||
nes_load_url("screen", path)
|
||||
vm.initCtrl()
|
||||
|
||||
|
BIN
fc/resources/invite-mask.jpg
Normal file
BIN
fc/resources/invite-mask.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 386 KiB |
Binary file not shown.
Before Width: | Height: | Size: 232 KiB |
@ -29,7 +29,7 @@ var gulp = require('gulp'),
|
||||
}))
|
||||
.pipe(stripDebug())
|
||||
.pipe(gulp.dest('fc/dist/js'))
|
||||
.pipe(notify({message: 'finished dist'}));
|
||||
.pipe(notify({message: 'finished minifyjsfc'}));
|
||||
});
|
||||
|
||||
gulp.task('default', ['jslint'], function() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user