mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-15 07:21:50 +08:00
many update
This commit is contained in:
parent
44c18c1ebc
commit
ebedcd7760
@ -44,3 +44,53 @@ html, body{
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.stroke-main {
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
|
||||||
|
.result-title {
|
||||||
|
margin-top: 9px !important;
|
||||||
|
margin-left: 5px !important;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.result-song {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
font-size: 5vmin;
|
||||||
|
margin: 30px 30px 0px 0px;
|
||||||
|
color: white;
|
||||||
|
float: right;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stroke-main:before {
|
||||||
|
content: attr(alt);
|
||||||
|
left: 0;
|
||||||
|
z-index: -1;
|
||||||
|
position: absolute;
|
||||||
|
-webkit-text-stroke: 0.3em #fb3c0c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stroke-main:after {
|
||||||
|
content: attr(alt);
|
||||||
|
left: 0;
|
||||||
|
z-index: -2;
|
||||||
|
position: absolute;
|
||||||
|
-webkit-text-stroke: 0.5em #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stroke-sub:before {
|
||||||
|
content: attr(alt);
|
||||||
|
position: absolute;
|
||||||
|
-webkit-text-stroke: 0.25em #000;
|
||||||
|
left: 0;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.songsel-title {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
font-size: 7vmin;
|
||||||
|
margin: 15px;
|
||||||
|
}
|
@ -15,8 +15,6 @@
|
|||||||
font-size: 7vmin;
|
font-size: 7vmin;
|
||||||
margin:0;
|
margin:0;
|
||||||
color: white;
|
color: white;
|
||||||
-webkit-text-stroke-width: 1px;
|
|
||||||
-webkit-text-stroke-color: black;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,8 +18,9 @@
|
|||||||
|
|
||||||
#song-container{
|
#song-container{
|
||||||
width:98%;
|
width:98%;
|
||||||
height:90%;
|
height:80%;
|
||||||
padding:1%;
|
padding: 5% 1% 1% 1%;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul li{
|
ul li{
|
||||||
@ -86,12 +87,13 @@ ul li{
|
|||||||
margin: auto;
|
margin: auto;
|
||||||
margin-top:10px;
|
margin-top:10px;
|
||||||
font-size: 20pt;
|
font-size: 20pt;
|
||||||
|
margin-left: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.difficulty .stars{
|
.difficulty .stars{
|
||||||
position:absolute;
|
position:absolute;
|
||||||
color: #f12b69;
|
color: #f12b69;
|
||||||
text-align: center;
|
margin-left: -17px;
|
||||||
width:100%;
|
width:100%;
|
||||||
bottom:10px;
|
bottom:10px;
|
||||||
}
|
}
|
||||||
|
@ -42,6 +42,7 @@ var assets = {
|
|||||||
'pause.wav',
|
'pause.wav',
|
||||||
'cancel.wav',
|
'cancel.wav',
|
||||||
'results.wav',
|
'results.wav',
|
||||||
|
'diffsel.wav',
|
||||||
|
|
||||||
'note_don.ogg',
|
'note_don.ogg',
|
||||||
'note_ka.ogg',
|
'note_ka.ogg',
|
||||||
|
@ -11,7 +11,7 @@ function Game(controller, selectedSong, songData){
|
|||||||
var _currentCircle=0;
|
var _currentCircle=0;
|
||||||
var _currentScore=0;
|
var _currentScore=0;
|
||||||
var _combo=0;
|
var _combo=0;
|
||||||
var _globalScore={points:0, great:0, good:0, fail:0, maxCombo:0, hp:0};
|
var _globalScore={points:0, great:0, good:0, fail:0, maxCombo:0, hp:0, song:selectedSong.title};
|
||||||
var _HPGain= 100/_songData.circles.length;
|
var _HPGain= 100/_songData.circles.length;
|
||||||
var _paused=false;
|
var _paused=false;
|
||||||
var _started=false;
|
var _started=false;
|
||||||
|
@ -25,6 +25,8 @@ function Scoresheet(controller, score){
|
|||||||
$("#nb-good").html(_score.good);
|
$("#nb-good").html(_score.good);
|
||||||
$("#nb-fail").html(_score.fail);
|
$("#nb-fail").html(_score.fail);
|
||||||
$("#max-combo").html(_score.maxCombo);
|
$("#max-combo").html(_score.maxCombo);
|
||||||
|
|
||||||
|
$('.result-song').attr('alt', _score.song).html(_score.song);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,6 +41,17 @@ function SongSelect(){
|
|||||||
$(".song:not(.opened)").click(function(e){
|
$(".song:not(.opened)").click(function(e){
|
||||||
if (!$(e.target).parents('.difficulties').length) {
|
if (!$(e.target).parents('.difficulties').length) {
|
||||||
assets.sounds["ka"].play();
|
assets.sounds["ka"].play();
|
||||||
|
|
||||||
|
if(!$('.opened').length) {
|
||||||
|
setTimeout(function(){
|
||||||
|
assets.sounds["diffsel"].play();
|
||||||
|
}, 300);
|
||||||
|
|
||||||
|
$('.songsel-title').fadeOut(200, function(){
|
||||||
|
$('.songsel-title').attr('alt', 'むずかしさをえらぶ').html('むずかしさをえらぶ').css('left', -300);
|
||||||
|
$('.songsel-title').animate({left:0, opacity:"show"}, 400);
|
||||||
|
});
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
$(".difficulty").hide();
|
$(".difficulty").hide();
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
<div id='scoresheet'>
|
<div id='scoresheet'>
|
||||||
|
|
||||||
<div id='top-part'>
|
<div id='top-part'>
|
||||||
<h2>成績発表</h2>
|
<h2 alt="成績発表" class="stroke-main result-title">成績発表</h2>
|
||||||
|
<h3 alt="" class="stroke-sub result-song"></h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id='result-bar'>
|
<div id='result-bar'>
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
<div id="song-select">
|
<div id="song-select">
|
||||||
|
<h2 alt="曲をえらぶ" class="stroke-main songsel-title">曲をえらぶ</h2>
|
||||||
<div id='song-container'></div>
|
<div id='song-container'></div>
|
||||||
</div>
|
</div>
|
Loading…
Reference in New Issue
Block a user