-
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 #269 from vplan-fr/main
Updating Prod
- Loading branch information
Showing
21 changed files
with
853 additions
and
24 deletions.
There are no files selected for viewing
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
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
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
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.
Binary file added
BIN
+106 KB
client/public/base_static/images/landing_page/vplanfr_room_overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+79.9 KB
client/public/base_static/images/landing_page/vplanfr_teacher_view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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 |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
<p class="responsive-text"> | ||
Man kann uns mit unserem <button on:click={() => navigate_page("contact")} class="link-button" type="button">Kontaktformular</button> oder per Mail unter <a href="mailto:[email protected]">[email protected]</a> erreichen. | ||
<br> | ||
Hier ist außerdem unser <a href="https://github.com/ArtrenH/VPlan_FR">Github-Repository</a>. | ||
Hier ist außerdem unser <a href="https://github.com/vplan-fr/VPlan_FR">Github-Repository</a>. | ||
</p> | ||
</div> | ||
</main> | ||
|
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,85 @@ | ||
<script> | ||
let blob; | ||
let clientX = 0; | ||
let clientY = 0; | ||
function moveBlob(event) { | ||
if(window.screen.width < 900) {return;} | ||
clientX = event["clientX"]; | ||
clientY = event["clientY"]; | ||
blob.animate({ | ||
left: `${clientX + document.documentElement.scrollLeft}px`, | ||
top: `${clientY + document.documentElement.scrollTop}px` | ||
}, { duration: 2000, fill: "forwards" }); | ||
} | ||
function moveScrollBlob(event) { | ||
if(window.screen.width >= 900) {return;} | ||
blob.animate({ | ||
left: `${window.screen.width/2 + document.documentElement.scrollLeft}px`, | ||
top: `${window.screen.height/2 + document.documentElement.scrollTop}px` | ||
}, { duration: 6000, fill: "forwards" }); | ||
} | ||
</script> | ||
|
||
<svelte:body on:mousemove={moveBlob}></svelte:body> | ||
<svelte:window on:scroll={moveScrollBlob}></svelte:window> | ||
<svelte:head> | ||
<style> | ||
body { | ||
position: relative; | ||
} | ||
</style> | ||
</svelte:head> | ||
|
||
<div id="bg"></div> | ||
|
||
<div id="blob-container"> | ||
<div id="blob" bind:this={blob}></div> | ||
</div> | ||
|
||
<style lang="scss"> | ||
#bg { | ||
height: 100%; | ||
width: 100%; | ||
position: absolute; | ||
z-index: -1; | ||
background-image: radial-gradient(#666666 0.5px, transparent 0.5px), radial-gradient(#666666 0.5px, transparent 0.5px); | ||
background-repeat: repeat; | ||
background-size: 20px 20px; | ||
background-position: 0 0, 10px 10px; | ||
} | ||
#blob { | ||
height: 34vmax; | ||
aspect-ratio: 1; | ||
position: absolute; | ||
left: 50%; | ||
top: 50%; | ||
translate: -50% -50%; | ||
border-radius: 50%; | ||
background: white linear-gradient(to right, var(--accent-color), blue); | ||
animation: rotate 20s infinite; | ||
opacity: 0.6; | ||
filter:blur(3vmax); | ||
} | ||
#blob-container { | ||
height: 100%; | ||
width: 100%; | ||
position: absolute; | ||
z-index: -2; | ||
overflow: hidden; | ||
} | ||
@keyframes rotateBlob { | ||
from { | ||
rotate: 0deg; | ||
} | ||
50% { | ||
scale: 1 1.5; | ||
} | ||
to { | ||
rotate: 360deg; | ||
} | ||
} | ||
</style> |
Oops, something went wrong.