forked from selenite-cc/selenite-old
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request selenite-cc#45 from khaybarkhaybaryayahud/main
ikhwani
- Loading branch information
Showing
21 changed files
with
4,798 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<html> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>Deal or No Deal</title> | ||
<link rel="icon" type="image/x-icon" href="index.jpg" /> | ||
<link rel="shortcut icon" type="image/x-icon" href="index.jpg" /> | ||
<script type="text/javascript" src="/controls.js"></script> | ||
</head> | ||
<body> | ||
|
||
<div id="ruffle" width="100%" height="100%"></div> | ||
<script src="ruffle.js"></script> | ||
<script> | ||
window.RufflePlayer = window.RufflePlayer || {}; | ||
window.addEventListener("load", (event) => { | ||
const ruffle = window.RufflePlayer.newest(); | ||
const player = ruffle.createPlayer(); | ||
const container = document.getElementById("ruffle"); | ||
player.id = "player"; | ||
player.style.width = "100%"; | ||
player.style.height = "100%"; | ||
container.appendChild(player); | ||
player.load("dealornodeal.swf"); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<iframe src="skills/index.html" width="100%" height="100%"></iframe> | ||
<script src="https://rawcdn.githack.com/yomotsu/ZipLoader/1dbc7803ee01ea3b4d8a07b64ae5567bf6149daf/dist/zip-loader.min.js"></script> | ||
<script> | ||
var loader = new ZipLoader( 'skills.zip' ); | ||
loader.load(); | ||
</script> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<iframe src="slope3/index.html" width="100%" height="100%"></iframe> | ||
<script src="https://rawcdn.githack.com/yomotsu/ZipLoader/1dbc7803ee01ea3b4d8a07b64ae5567bf6149daf/dist/zip-loader.min.js"></script> | ||
<script> | ||
var loader = new ZipLoader( 'slope3.zip' ); | ||
loader.load(); | ||
</script> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.