Merge pull request #487 from thecodingmachine/website-demo

Update website
This commit is contained in:
Kharhamel 2020-12-15 16:29:36 +01:00 committed by GitHub
commit 4680c65500
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 43 additions and 14 deletions

View File

@ -54,8 +54,17 @@
<link rel="stylesheet" href="main.css"> <link rel="stylesheet" href="main.css">
<script src="bundle.js"></script> <script src="bundle.js"></script>
<script> <script>
function startDemo() {
let playUrl = window.location.protocol + "//play."+window.location.host+'/_/global/gparant.github.io/tcm-client/Demo/demo-v1.json';
window.open(playUrl, '_blank');
}
function startGame() { function startGame() {
let playUrl = window.location.protocol + "//play."+window.location.host+"/_/global/npeguin.github.io/office-map/map.json"; let playUrl = window.location.protocol + "//play."+window.location.host+'/_/global/npeguin.github.io/office-map/map.json';
window.open(playUrl, '_blank');
}
function startConsole() {
//let playUrl = window.location.protocol + "//admin."+window.location.host;
let playUrl = 'https://admin.workadventu.re';
window.open(playUrl, '_blank'); window.open(playUrl, '_blank');
} }
function shareFB() { function shareFB() {
@ -113,14 +122,23 @@
</h3> </h3>
</div> </div>
<div class="row buttons-row justify-content-md-center pt-5"> <div class="row buttons-row justify-content-md-center pt-5">
<div class="col col-lg-3"> <div class="col col-lg-3">
<a class="custom-link start" href="/choose-map.html" title="WORK IN PRIVATE"> <a class="custom-link start"
WORK IN PRIVATE style="padding-top: 4px;font-size: 18px;"
target="_BLANK" onclick="startConsole()" title="YOUR ADVENTURE!">
CREATE YOUR MAP
</a> </a>
</div> </div>
<div class="col col-lg-3"> <div class="col col-lg-3">
<a class="custom-link play" target="_BLANK" onclick="startGame()" title="WORK ONLINE"> <a class="custom-link play" target="_BLANK" onclick="startDemo()" title="DEMO!">
TRY IT NOW! TUTORIAL
</a>
</div>
</div>
<div style="min-height: 100px" class="row buttons-row justify-content-md-center pt-5">
<div class="col col-lg-3">
<a class="custom-link anonymous contribute" target="_BLANK" onclick="startGame()" title="FEEDBACK">
DEMO (Anonymous)
</a> </a>
</div> </div>
</div> </div>
@ -169,9 +187,9 @@
<div> <div>
<p>Remote work? Friend party? Use WorkAdventure as you prefer.</p> <p>Remote work? Friend party? Use WorkAdventure as you prefer.</p>
<p>Click the button below to come and say hi!</p> <p>Click the button below to come and say hi!</p>
<p class="bubble-action"><span onclick="startGame()"> <p class="bubble-action"><span onclick="startDemo()">
<img src="static/images/playicon.png" /> <img src="static/images/playicon.png" />
TRY IT NOW ! DEMO!
</span></p> </span></p>
</div> </div>
</div> </div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 979 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 937 B

View File

@ -27,7 +27,12 @@
@return $randomNum; @return $randomNum;
} }
html{
cursor: url('../images/cursor_normal.png'), auto;
a{
cursor: url('../images/cursor_pointer.png'), auto;
}
}
header { header {
background: #28A7FC url("../images/sky.jpg") no-repeat bottom; background: #28A7FC url("../images/sky.jpg") no-repeat bottom;
background-size: 100%; background-size: 100%;
@ -75,7 +80,7 @@ header {
.title { .title {
z-index: 3; z-index: 3;
position: relative; position: relative;
padding: 5rem 0; padding: 2rem 0 4rem 0;
color: black; color: black;
h1 { h1 {
font-family: 'Karmatic Arcade'; font-family: 'Karmatic Arcade';
@ -138,7 +143,7 @@ header {
} }
.custom-link{ .custom-link{
cursor: pointer; cursor: url('../images/cursor_pointer.png'), pointer;
font-family: "VCR OSD Mono"; font-family: "VCR OSD Mono";
font-size: 1.125rem; font-size: 1.125rem;
letter-spacing: 5px; letter-spacing: 5px;
@ -172,9 +177,15 @@ header {
display: block; display: block;
} }
} }
&.anonymous{
background-image: none;
color: black;
text-decoration: underline;
font-style: italic;
}
&.play { &.play {
background-image: url('../images/btn-bg-3.png'); background-image: url('../images/btn-bg-3.png');
cursor: pointer; cursor: url('../images/cursor_pointer.png'), pointer;
} }
&.light{ &.light{
background-image: url('../images/btn-bg-light.png'); background-image: url('../images/btn-bg-light.png');
@ -188,7 +199,7 @@ header {
} }
.social-links a { .social-links a {
cursor: pointer; cursor: url('../images/cursor_pointer.png'), pointer;
&:hover{ &:hover{
text-decoration: none; text-decoration: none;
@ -341,7 +352,7 @@ img{
margin: 0; margin: 0;
} }
&.bubble-action { &.bubble-action {
cursor: pointer; cursor: url('../images/cursor_pointer.png'), pointer;
text-decoration: underline text-decoration: underline
} }