mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-19 03:52:08 -05:00
Upload files to "kick"
This commit is contained in:
parent
57964f8161
commit
c3807a4cb1
2
kick/appmanifest.json
Normal file
2
kick/appmanifest.json
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Resource>/170790/rn5oasznnj8rt23qyfwrfihkkt5rwh6f/appmanifest.json</Resource><RequestId>d797ef39d19fbf1d</RequestId></Error>
|
38812
kick/c2runtime.js
Normal file
38812
kick/c2runtime.js
Normal file
File diff suppressed because it is too large
Load Diff
98703
kick/data.js
Normal file
98703
kick/data.js
Normal file
File diff suppressed because it is too large
Load Diff
BIN
kick/icon-256.png
Normal file
BIN
kick/icon-256.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 118 KiB |
204
kick/index.html
Normal file
204
kick/index.html
Normal file
@ -0,0 +1,204 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title></title>
|
||||
|
||||
<!-- Standardised web app manifest -->
|
||||
<link rel="manifest" href="appmanifest.json">
|
||||
|
||||
<!-- Allow fullscreen mode on iOS devices. (These are Apple specific meta tags.) -->
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<link rel="apple-touch-icon" sizes="256x256" href="icon-256.png">
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
|
||||
<!-- Chrome for Android web app tags -->
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<link rel="shortcut icon" sizes="256x256" href="icon-256.png">
|
||||
|
||||
<!-- All margins and padding must be zero for the canvas to fill the screen. -->
|
||||
<style type="text/css">
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
html, body {
|
||||
background: #000;
|
||||
color: #fff;
|
||||
overflow: hidden;
|
||||
touch-action: none;
|
||||
-ms-touch-action: none;
|
||||
}
|
||||
canvas {
|
||||
touch-action-delay: none;
|
||||
touch-action: none;
|
||||
-ms-touch-action: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="fb-root"></div>
|
||||
|
||||
<script>
|
||||
// Issue a warning if trying to preview an exported project on disk.
|
||||
(function(){
|
||||
// Check for running exported on file protocol
|
||||
if (window.location.protocol.substr(0, 4) === "file")
|
||||
{
|
||||
alert("Exported games won't work until you upload them. (When running on the file:/// protocol, browsers block many features from working for security reasons.)");
|
||||
}
|
||||
})();
|
||||
</script>
|
||||
|
||||
<!-- The canvas must be inside a div called c2canvasdiv -->
|
||||
<div id="c2canvasdiv">
|
||||
|
||||
<!-- The canvas the project will render to. If you change its ID, don't forget to change the
|
||||
ID the runtime looks for in the jQuery events above (ready() and cr_sizeCanvas()). -->
|
||||
<canvas id="c2canvas" width="1920" height="1080">
|
||||
<!-- This text is displayed if the visitor's browser does not support HTML5.
|
||||
You can change it, but it is a good idea to link to a description of a browser
|
||||
and provide some links to download some popular HTML5-compatible browsers. -->
|
||||
<h1>Your browser does not appear to support HTML5. Try upgrading your browser to the latest version. <a href="http://www.whatbrowser.org">What is a browser?</a>
|
||||
<br><br><a href="http://www.microsoft.com/windows/internet-explorer/default.aspx">Microsoft Internet Explorer</a><br>
|
||||
<a href="http://www.mozilla.com/firefox/">Mozilla Firefox</a><br>
|
||||
<a href="http://www.google.com/chrome/">Google Chrome</a><br>
|
||||
<a href="http://www.apple.com/safari/download/">Apple Safari</a></h1>
|
||||
</canvas>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Pages load faster with scripts at the bottom -->
|
||||
|
||||
<!-- Construct 2 exported games require jQuery. -->
|
||||
<script src="jquery-2.1.1.min.js"></script>
|
||||
|
||||
|
||||
|
||||
<!-- The runtime script. You can rename it, but don't forget to rename the reference here as well.
|
||||
This file will have been minified and obfuscated if you enabled "Minify script" during export. -->
|
||||
<script src="c2runtime.js"></script>
|
||||
|
||||
<script>
|
||||
// Start the Construct 2 project running on window load.
|
||||
jQuery(document).ready(function ()
|
||||
{
|
||||
// Create new runtime using the c2canvas
|
||||
cr_createRuntime("c2canvas");
|
||||
});
|
||||
|
||||
// Pause and resume on page becoming visible/invisible
|
||||
function onVisibilityChanged() {
|
||||
if (document.hidden || document.mozHidden || document.webkitHidden || document.msHidden)
|
||||
cr_setSuspended(true);
|
||||
else
|
||||
cr_setSuspended(false);
|
||||
};
|
||||
|
||||
document.addEventListener("visibilitychange", onVisibilityChanged, false);
|
||||
document.addEventListener("mozvisibilitychange", onVisibilityChanged, false);
|
||||
document.addEventListener("webkitvisibilitychange", onVisibilityChanged, false);
|
||||
document.addEventListener("msvisibilitychange", onVisibilityChanged, false);
|
||||
|
||||
function OnRegisterSWError(e)
|
||||
{
|
||||
console.warn("Failed to register service worker: ", e);
|
||||
};
|
||||
|
||||
// Runtime calls this global method when ready to start caching (i.e. after startup).
|
||||
// This registers the service worker which caches resources for offline support.
|
||||
window.C2_RegisterSW = function C2_RegisterSW()
|
||||
{
|
||||
if (!navigator.serviceWorker)
|
||||
return; // no SW support, ignore call
|
||||
|
||||
try {
|
||||
navigator.serviceWorker.register("sw.js", { scope: "./" })
|
||||
.then(function (reg)
|
||||
{
|
||||
console.log("Registered service worker on " + reg.scope);
|
||||
})
|
||||
.catch(OnRegisterSWError);
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
OnRegisterSWError(e);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
body,html{margin:0 auto;padding:0 auto;width:100%;height:100%;overflow:hidden}#adsbox{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;display:none;}
|
||||
</style>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
|
||||
<script src="https://yandex.ru/games/sdk/v2"></script>
|
||||
<div id="adsbox" style="display: block;"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$("#adsbox").click(function () {
|
||||
ShowYaBanner();
|
||||
$('#adsbox').hide();
|
||||
});
|
||||
setTimeout(function(){ $('#adsbox').show(); }, 1000);
|
||||
|
||||
window.setInterval(function(){
|
||||
$('#adsbox').show();
|
||||
}, 60000);
|
||||
</script>
|
||||
|
||||
<script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-81855592-1"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'UA-81855592-1');
|
||||
|
||||
if (YaGames)
|
||||
{
|
||||
YaGames.init(
|
||||
{
|
||||
screen:
|
||||
{
|
||||
fullscreen: false
|
||||
},
|
||||
yandexApp: {
|
||||
enabled: true
|
||||
},
|
||||
adv:
|
||||
{
|
||||
onAdvClose: wasShown =>
|
||||
{
|
||||
//cr_setSuspended(false);
|
||||
}
|
||||
}
|
||||
}).then(function (ysdk)
|
||||
{
|
||||
window.ysdk = ysdk;
|
||||
});
|
||||
}
|
||||
|
||||
function ShowYaBanner() {
|
||||
try
|
||||
{
|
||||
ysdk.adv.showFullscreenAdv(
|
||||
{
|
||||
|
||||
});
|
||||
}
|
||||
catch(err) { }
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<script src="/js/site-lock.js"></script>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user