Skip to content

Commit

Permalink
Third page in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpNerdd committed Apr 16, 2024
1 parent b4a1d03 commit 8472b62
Show file tree
Hide file tree
Showing 10 changed files with 3,861 additions and 2 deletions.
Binary file added Media/ProjectsSprites/List.PNG
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 Media/ProjectsSprites/coolpurplethings.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,966 changes: 1,966 additions & 0 deletions Media/ProjectsSprites/coolpurplethings.svg
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 Media/ProjectsSprites/omgitsmept3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,555 changes: 1,555 additions & 0 deletions Media/ProjectsSprites/omgitsmept3.svg
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 Media/ProjectsSprites/projecttab.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
285 changes: 285 additions & 0 deletions Media/ProjectsSprites/projecttab.svg
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 Media/ProjectsSprites/selectoverlay.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 9 additions & 2 deletions infopage copy.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,19 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<title>Information Page</title>
<link rel="stylesheet" href="./projects.css">
<title>Projects Page</title>
</head>
<body>
<img id="foam" src="./Media/HomeSprites/Oceanfoam.svg" alt="Foam" style="width: 100%; position: absolute; top: 0; left: 0;"/>
<img id="gradient-overlay" src="./Media/HomeSprites/imagegradient.png" alt="Gradient Overlay" />

<img id="page-wide-overlay" src="./Media/ProjectsSprites/omgitsmept3.png" alt="Page Wide Decorative" />
<img src="./Media/ProjectsSprites/coolpurplethings.PNG" alt="Purple shattered things" id="purple-thing-overlay">
<img src="./Media/ProjectsSprites/List.PNG" alt="List text" id="list-text">
<img src="./Media/ProjectsSprites/projecttab.png" alt="projecttab" id="projecttab">



<div class="controls">
<label class="switch">
<input type="checkbox" id="toggleMusic">
Expand Down
46 changes: 46 additions & 0 deletions projects.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#page-wide-overlay {
position: fixed;
top: 0; /* Align to the top of the viewport */
left: 0; /* Align to the left side of the viewport */
right: 0; /* Align to the right side of the viewport */
bottom: 30px; /* Give some space at the bottom to account for the taskbar */
width: 100vw; /* Make it as wide as the full viewport */
height: calc(100vh - 1px); /* Adjust height considering the bottom space */
z-index: 16; /* Above the other overlays */
object-fit: cover; /* Cover the available space without distorting the aspect ratio */
}

#purple-thing-overlay {
position: fixed;
top: 0; /* Align to the top of the viewport */
left: 0; /* Align to the left side of the viewport */
right: 0; /* Align to the right side of the viewport */
bottom: 30px; /* Give some space at the bottom to account for the taskbar */
width: 100vw; /* Make it as wide as the full viewport */
height: calc(100vh - 1px); /* Adjust height considering the bottom space */
z-index: 16; /* Above the other overlays */
object-fit: cover; /* Cover the available space without distorting the aspect ratio */
}

#list-text{
position: fixed;
top: 13%; /* Adjust as needed */
right: 84%; /* Position towards the right, but not far right */
bottom: 30px; /* Give some space at the bottom to account for the taskbar */
width: 12%; /* Adjust the width to the desired size */
height: auto; /* Maintain the aspect ratio */
z-index: 19; /* Above the previous full-page image overlay */
object-fit: cover; /* Cover the available space without distorting the aspect ratio */
}


#projecttab{
position: fixed;
top: 23%; /* Adjust as needed */
right: 63%; /* Position towards the right, but not far right */
bottom: 30px; /* Give some space at the bottom to account for the taskbar */
width: 35%; /* Adjust the width to the desired size */
height: auto; /* Maintain the aspect ratio */
z-index: 19; /* Above the previous full-page image overlay */
object-fit: cover; /* Cover the available space without distorting the aspect ratio */
}

0 comments on commit 8472b62

Please sign in to comment.