Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added cmas-snowglobe #50

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions experiences/cmas-snowglobe/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"id": "cmas-snowglobe",
"type": "web",
"title": "Christmas cheer",
"description": "Have a wonderful Christmas!",
"layout": "full",
"lifetime": 240,
"queueable": true
}
Binary file added experiences/cmas-snowglobe/thumb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions experiences/cmas-snowglobe/web/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Merry Christmas!</title>
<link rel="stylesheet" href="./style.css" />
</head>

<body>

<div class="video-container">
<video width="2736px" autoplay muted loop><source src="snowglobe.mov" type="video/mp4"></video>
</div>

<div id=mc></div>

</body>
</html>
Binary file added experiences/cmas-snowglobe/web/mc2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions experiences/cmas-snowglobe/web/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@

html {
width: 2736px;
height: 1216px;
background: #444444;
}

body {
margin: 0;
padding: 0;
width: 2736px;
height: 1216px;
background: #444444;

}

div#shift {
width: 2736px;
height: 1216px;
position: absolute;
left:0px;
top:-200px;
}

div#mc {
position: absolute;
left:1350px;
top:0px;
width:1200px;
height:1200px;
background-size: 1200px 1200px;
background-image: url("mc2.png");
}

.video-container {
height: 1216px;
width: 2736px;
overflow: hidden;
position: absolute;
}

.video-container video {
transform: translateY(-10%);
}
Binary file added experiences/cmas-snowglobe/wide.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions folders.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ tags = [ "cpms50" ]
featured = "cpms50"
visible = true

[christmas]
title = "Christmas"
description = "Christmas"
tags = [ "christmas" ]
featured = "cmas-snowglobe"
visible = true

[lds]
title = "Temple Photo Op"
description = "LDS-themed experiences"
Expand Down
5 changes: 5 additions & 0 deletions tags.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,15 @@ experiences = [
"photo-op"
]

[christmas]
title = "Christmas"
experiences = [ "cmas-snowglobe" ]

[cpms50]
title = "CPMS is 50"
experiences = [ "cpms50" ]


[lds]
title = "LDS-themed experiences"
experiences = [
Expand Down
Loading