added more HTML, made scrolling slower so it is less zoom-y
This commit is contained in:
parent
e0cd947b92
commit
51a11ee33d
73
index.html
73
index.html
@ -7,8 +7,8 @@
|
||||
<title>Vite App</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
|
||||
<canvas id="bg"></canvas>
|
||||
<div id="div1" class="page-wrapper">
|
||||
<header>
|
||||
@ -23,9 +23,9 @@
|
||||
<p>
|
||||
<h1>Projects: </h1>
|
||||
<ul>
|
||||
<a href="https://git.whoisthisjoker.com/Daniel/3d_website"><li>This website</li></a>
|
||||
<a href="https://git.whoisthisjoker.com/Daniel/3d_website"><li>This website</li></a>
|
||||
Personal project (2024)
|
||||
<ul>
|
||||
Personal project (2024)
|
||||
<li>Written in Javascript and uses the Node Package Manager</li>
|
||||
<li>Utilizes three dimensional graphics to provide an interesting visual experience</li>
|
||||
<li>Uses context-sensitive animations to provide interactivity</li>
|
||||
@ -39,58 +39,57 @@
|
||||
</ul>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Professional Experience-->
|
||||
<p>
|
||||
<h1>Professional Experience: </h1>
|
||||
<h1>Professional experience: </h1>
|
||||
<ul>
|
||||
<li>Business Systems Analyst (2021 - current)</li>
|
||||
<a href="https://www.letu.edu/offices/administration-finance/it/staff.html#ContentBlock-1-3"><li>Systems Analyst</li></a>
|
||||
LeTourneau University, Longview, Texas (2021 - current)
|
||||
<br>
|
||||
Responsibilities:
|
||||
<ul>
|
||||
<li>LeTourneau University, Longview, TX</li>
|
||||
<li>Analyze, patch, and mitigate security vulnerabilities</li>
|
||||
<li>Perform bug fixes in ASP.net web pages</li>
|
||||
<li>Automate tasks on Debian Linux using Bash</li>
|
||||
</ul>
|
||||
<li>Help Desk Associate (2021)</li>
|
||||
<ul>
|
||||
<li>IT Yall, Dallas, TX</li>
|
||||
</ul>
|
||||
<a href="https://git.whoisthisjoker.com/Daniel/bibliofile"><li>Help Desk</li></a>
|
||||
IT Yall, Dallas, TX(2021)
|
||||
<br>
|
||||
Responsibilities:
|
||||
<ul>
|
||||
<li>task 1</li>
|
||||
<li>task 2</li>
|
||||
<li>task 3</li>
|
||||
</ul>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
<!--educational experience-->
|
||||
<p>
|
||||
<h1>Education: </h1>
|
||||
<ul>
|
||||
<li> B.S. Information Systems (August 2017 - December 2020)</li>
|
||||
LeTourneau University
|
||||
<ul>
|
||||
<li> Learned software engineering, encryption algorithms, and penetration testing methodologies</li>
|
||||
<li> Designed software such as Pick-A-Student, Bouncer, and Paperwork Avalanche</li>
|
||||
<li> Wrote and executed exploits for metasploitable OS</li>
|
||||
</ul>
|
||||
<li> A.S. Business Management (January 2015 - May 2017)</li>
|
||||
<ul>
|
||||
<li> Took classes on Economics, Accounting, and leadership</li>
|
||||
<li> Joined the Phi Theta Kappa society and regularly attended meetings</li>
|
||||
<li> Earned the Deans List recognition in Fall of 2016</li>
|
||||
</ul>
|
||||
<li> Homeschooled (September 2001 - May 2014) </li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
howdy
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
doody
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
every
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
body
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="module" src="/main.js"></script>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
6
main.js
6
main.js
@ -2,7 +2,7 @@
|
||||
Author: Daniel Jones
|
||||
IDE: VSCodium
|
||||
Browsers tested: Firefox 125
|
||||
Last change: 04/24/24
|
||||
Last change: 05/08/24
|
||||
purpose: portfolio website to show to potential freelance customers/web developer positions
|
||||
*/
|
||||
|
||||
@ -52,7 +52,7 @@ pointLight.position.set(10, 10, 10);
|
||||
//const controls = new OrbitControls(camera, renderer.domElement);
|
||||
|
||||
|
||||
//floor object that appears in the background
|
||||
//floor object that appears in the background
|
||||
const floorTexture = new THREE.TextureLoader().load("marble.jpg");
|
||||
floorTexture.wrapT = THREE.RepeatWrapping;
|
||||
floorTexture.wrapS = THREE.RepeatWrapping;
|
||||
@ -69,7 +69,7 @@ scene.add(floor);
|
||||
//when the user scrolls, walk down the hallway.
|
||||
function updateCamera(ev){
|
||||
let div1 = document.getElementById("div1");
|
||||
camera.position.z = 10 - window.scrollY;
|
||||
camera.position.z = 100 - window.scrollY / 3;
|
||||
}
|
||||
window.addEventListener("scroll", updateCamera);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user