Spaces:
Running
Running
File size: 9,815 Bytes
17e4170 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Work Experience</title>
<style>
/* --- CSS STYLES --- */
body {
margin: 0;
background-color: #0d0d0d;
font-family: 'Segoe UI', sans-serif;
color: white;
overflow-x: hidden;
}
/* Fixed 3D Background */
canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: linear-gradient(to bottom, #050505, #121212);
}
/* Navigation */
nav {
padding: 2rem 4rem;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 10;
position: relative;
}
.logo { font-weight: bold; font-size: 1.5rem; letter-spacing: 2px; }
.nav-links a {
color: #aaa;
text-decoration: none;
margin-left: 20px;
transition: 0.3s;
}
.nav-links a:hover { color: #00f260; }
/* Header */
.header {
text-align: center;
padding: 3rem 0;
}
.header h1 {
font-size: 3rem;
margin: 0;
background: linear-gradient(90deg, #00f260, #0575e6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.header p { color: #888; margin-top: 10px; }
/* --- TIMELINE STYLES --- */
.timeline {
position: relative;
max-width: 1000px;
margin: 0 auto;
padding: 40px 0 100px 0;
}
/* The Vertical Line */
.timeline::after {
content: '';
position: absolute;
width: 4px;
background-color: rgba(255, 255, 255, 0.1);
top: 0;
bottom: 0;
left: 50%;
margin-left: -2px;
z-index: -1;
}
/* Container for each event */
.container {
padding: 10px 40px;
position: relative;
background-color: inherit;
width: 50%;
box-sizing: border-box;
}
.left { left: 0; text-align: right; }
.right { left: 50%; }
/* The Circles on the line */
.container::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
right: -10px;
background-color: #0d0d0d;
border: 3px solid #00f260;
top: 25px;
border-radius: 50%;
z-index: 1;
}
.right::after { left: -10px; }
/* The Glass Content Box */
.content {
padding: 20px 30px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
border-radius: 6px;
transition: transform 0.3s ease;
}
.content:hover {
transform: scale(1.03);
border-color: #00f260;
box-shadow: 0 0 20px rgba(0, 242, 96, 0.1);
}
.content h2 { margin: 0 0 5px 0; font-size: 1.5rem; }
.content h4 { margin: 0 0 15px 0; color: #00f260; font-weight: normal; }
.content p { font-size: 0.95rem; color: #ccc; line-height: 1.6; }
.date { font-size: 0.85rem; color: #777; margin-bottom: 10px; display: block; font-weight: bold; letter-spacing: 1px;}
/* Responsive Mobile Layout */
@media screen and (max-width: 768px) {
.timeline::after { left: 31px; }
.container { width: 100%; padding-left: 70px; padding-right: 25px; }
.left { text-align: left; }
.container::after { left: 21px; }
.right { left: 0; }
}
</style>
</head>
<body>
<canvas id="work-canvas"></canvas>
<nav>
<div class="logo">PORTFOLIO</div>
<div class="nav-links">
<a href="new 1.html">Home</a>
<a href="projects.html">Projects</a>
<a href="work.html" style="color:white; border-bottom: 2px solid #00f260;">Work</a>
</div>
</nav>
<div class="header">
<h1>Experience</h1>
<p>My professional journey and milestones.</p>
</div>
<div class="timeline">
<div class="container left">
<div class="content">
<span class="date">2024 - PRESENT</span>
<h2>Senior Web Developer</h2>
<h4>Tech Solutions Inc.</h4>
<p>Leading the frontend team in rebuilding the company's flagship e-commerce platform using React and Three.js. Improved site performance by 40%.</p>
</div>
</div>
<div class="container right">
<div class="content">
<span class="date">2023 - 2024</span>
<h2>Freelance Developer</h2>
<h4>Self-Employed</h4>
<p>Developed custom websites and mobile apps for international clients. Specialized in creating interactive 3D landing pages and dashboard UIs.</p>
</div>
</div>
<div class="container left">
<div class="content">
<span class="date">SUMMER 2023</span>
<h2>AI Research Intern</h2>
<h4>Data Corp</h4>
<p>Worked on Natural Language Processing models to automate customer support tickets. Integrated Python backend with a Vue.js frontend dashboard.</p>
</div>
</div>
<div class="container right">
<div class="content">
<span class="date">2022</span>
<h2>Hackathon Winner</h2>
<h4>Global Tech Fest</h4>
<p>Secured 1st place out of 50 teams by building a real-time sign language translator using Computer Vision and Machine Learning.</p>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script>
// --- 3D SCENE SETUP ---
const scene = new THREE.Scene();
// Add light so the shapes look solid yet metallic
const ambientLight = new THREE.AmbientLight(0xffffff, 0.5);
scene.add(ambientLight);
const pointLight = new THREE.PointLight(0x00f260, 1);
pointLight.position.set(25, 50, 25);
scene.add(pointLight);
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer({ canvas: document.getElementById('work-canvas'), alpha: true });
renderer.setSize(window.innerWidth, window.innerHeight);
renderer.setPixelRatio(window.devicePixelRatio);
// --- CREATE FLOATING SHAPES ---
// We will create multiple wireframe shapes floating upward
const geometry = new THREE.IcosahedronGeometry(1, 0); // Crystal shape
const material = new THREE.MeshBasicMaterial({
color: 0x444444,
wireframe: true,
transparent: true,
opacity: 0.3
});
const shapes = [];
const numShapes = 40;
for (let i = 0; i < numShapes; i++) {
const mesh = new THREE.Mesh(geometry, material);
// Random Positions
mesh.position.x = (Math.random() - 0.5) * 40;
mesh.position.y = (Math.random() - 0.5) * 40;
mesh.position.z = (Math.random() - 0.5) * 20;
// Random Scale
const s = Math.random() * 1.5;
mesh.scale.set(s, s, s);
// Random Rotation speed custom property
mesh.userData = {
rotSpeedX: Math.random() * 0.02,
rotSpeedY: Math.random() * 0.02,
flySpeed: Math.random() * 0.02 + 0.01
};
scene.add(mesh);
shapes.push(mesh);
}
camera.position.z = 15;
// Interaction
let mouseY = 0;
document.addEventListener('mousemove', (e) => {
mouseY = e.clientY;
});
// --- ANIMATION LOOP ---
function animate() {
requestAnimationFrame(animate);
// Animate each shape
shapes.forEach(mesh => {
mesh.rotation.x += mesh.userData.rotSpeedX;
mesh.rotation.y += mesh.userData.rotSpeedY;
// Move Upwards
mesh.position.y += mesh.userData.flySpeed;
// Reset position if it goes off screen top
if (mesh.position.y > 20) {
mesh.position.y = -20;
}
});
// Gentle camera movement based on mouse Y
camera.position.y += (mouseY * 0.01 - camera.position.y) * 0.05;
renderer.render(scene, camera);
}
animate();
// Resize
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
</script>
</body>
</html> |