Merge branch 'main' of https://github.com/Wil-Ro/Portfolio into main
This commit is contained in:
commit
0ad68fb298
2 changed files with 13 additions and 1 deletions
12
index.html
12
index.html
|
@ -45,6 +45,18 @@
|
|||
|
||||
|
||||
<!-- gallery slides defined here, originally we had one slide and just changed its values but loading images is slow, easier to load them before hand and just hide or show them-->
|
||||
<div class = "programGallery">
|
||||
<p class = "galleryTitle">VR physics engine</p>
|
||||
<a href = "./pages/gallery/epq-project/epq-project.html" class = "galleryLink">
|
||||
<img src = "./pages/gallery/epq-project/projectHeaderImage.png" class = "galleryImage" style = "object-position: center;">
|
||||
</a>
|
||||
<p class = "galleryCaption">A project done for my EPQ, during post-16, where I aimed to create a virtual reality environment where the user could grab and interact with objects in a semi-physics based
|
||||
environment.<br><br>This system was my introduction to Unreal Engine and mainly used its "Blueprint" visual language, however I later used C++ to try and add my own physics
|
||||
to it.
|
||||
</p>
|
||||
<button class = "galleryLeftArrow" onClick = "window.parent.lastSlide();">◄</button>
|
||||
<button class = "galleryRightArrow" onClick = "window.parent.nextSlide();">►</button>
|
||||
</div>
|
||||
|
||||
<div class = "programGallery">
|
||||
<p class = "galleryTitle">Work on Aardvark XR</p>
|
||||
|
|
|
@ -131,7 +131,7 @@ h1{
|
|||
|
||||
padding: 5px;
|
||||
|
||||
font-size: 2rem;
|
||||
font-size: clamp(1rem, 3vw, 3rem);
|
||||
|
||||
border-radius: 0;
|
||||
border-top-left-radius: 5px;
|
||||
|
|
Loading…
Add table
Reference in a new issue