mirror of
https://github.com/citizenfx/cfx-server-data.git
synced 2025-01-25 03:12:56 +08:00
update keks loading screen example
This commit is contained in:
parent
8fce58cc80
commit
def0581d6d
@ -4,3 +4,7 @@ files {
|
|||||||
'bankgothic.ttf',
|
'bankgothic.ttf',
|
||||||
'loadscreen.jpg'
|
'loadscreen.jpg'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
loadscreen 'index.html'
|
||||||
|
|
||||||
|
resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5'
|
@ -6,13 +6,14 @@
|
|||||||
<div class="backdrop">
|
<div class="backdrop">
|
||||||
<div class="top">
|
<div class="top">
|
||||||
<h1 title="Free Mode">Free Mode</h1>
|
<h1 title="Free Mode">Free Mode</h1>
|
||||||
<h2 title="Algonquin">Algonquin</h2>
|
<h2 title="Not Algonquin">Not Algonquin</h2>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="letni">
|
<div class="letni">
|
||||||
<h2 title="INTEL">Intel</h2>
|
<h2 title="INTEL">Intel</h2>
|
||||||
|
<h3></h3>
|
||||||
<div class="loadbar"><div class="thingy"></div></div>
|
<div class="loadbar"><div class="thingy"></div></div>
|
||||||
<p>The Statue of Happiness has a heart. Have one too!</p>
|
<p>The Statue of Happiness has no heart. You do.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom">
|
<div class="bottom">
|
||||||
<div id="gradient">
|
<div id="gradient">
|
||||||
@ -21,21 +22,56 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var left = -10;
|
// this will actually restart the loading bar a lot, making multiple loading bars is an exercise to the reader... for now.
|
||||||
|
// for a set of possible events, see https://github.com/citizenfx/cfx-client/blob/up-master/components/loading-screens-five/src/LoadingScreens.cpp
|
||||||
|
var count = 0;
|
||||||
|
var thisCount = 0;
|
||||||
|
|
||||||
var self = function()
|
const emoji = {
|
||||||
{
|
INIT_BEFORE_MAP_LOADED: [ '🍉' ],
|
||||||
var elem = document.querySelector('.thingy');
|
INIT_AFTER_MAP_LOADED: [ '🍋', '🍊' ],
|
||||||
left += (0.15 / 60) * 100;
|
INIT_SESSION: [ '🍐', '🍅', '🍆' ],
|
||||||
if (left >= 100)
|
|
||||||
{
|
|
||||||
left = -10;
|
|
||||||
}
|
|
||||||
|
|
||||||
elem.style.left = left + '%';
|
|
||||||
requestAnimationFrame(self);
|
|
||||||
};
|
};
|
||||||
requestAnimationFrame(self);
|
|
||||||
|
const handlers = {
|
||||||
|
startInitFunctionOrder(data)
|
||||||
|
{
|
||||||
|
count = data.count;
|
||||||
|
|
||||||
|
document.querySelector('.letni h3').innerHTML += emoji[data.type][data.order - 1] || '';
|
||||||
|
},
|
||||||
|
|
||||||
|
initFunctionInvoking(data)
|
||||||
|
{
|
||||||
|
document.querySelector('.thingy').style.left = '0%';
|
||||||
|
document.querySelector('.thingy').style.width = ((data.idx / count) * 100) + '%';
|
||||||
|
},
|
||||||
|
|
||||||
|
startDataFileEntries(data)
|
||||||
|
{
|
||||||
|
count = data.count;
|
||||||
|
|
||||||
|
document.querySelector('.letni h3').innerHTML += "\u{1f358}";
|
||||||
|
},
|
||||||
|
|
||||||
|
performMapLoadFunction(data)
|
||||||
|
{
|
||||||
|
++thisCount;
|
||||||
|
|
||||||
|
document.querySelector('.thingy').style.left = '0%';
|
||||||
|
document.querySelector('.thingy').style.width = ((thisCount / count) * 100) + '%';
|
||||||
|
},
|
||||||
|
|
||||||
|
onLogLine(data)
|
||||||
|
{
|
||||||
|
document.querySelector('.letni p').innerHTML = data.message + "..!";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
window.addEventListener('message', function(e)
|
||||||
|
{
|
||||||
|
(handlers[e.data.eventName] || function() {})(e.data);
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -80,7 +80,7 @@ h1:before, h2:before {
|
|||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.letni h2
|
.letni h2, .letni h3
|
||||||
{
|
{
|
||||||
font-family: BankGothic;
|
font-family: BankGothic;
|
||||||
|
|
||||||
@ -89,6 +89,8 @@ h1:before, h2:before {
|
|||||||
font-size: 50px;
|
font-size: 50px;
|
||||||
|
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
|
||||||
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top
|
.top
|
||||||
@ -134,6 +136,8 @@ h1:before, h2:before {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thingy
|
.thingy
|
||||||
|
Loading…
Reference in New Issue
Block a user