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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
| <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>动态视效简历 - [你的名字]</title> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <style> :root { --primary-dark: #2c3e50; --primary-light: #ecf0f1; --accent-blue: #3498db; --accent-green: #2ecc71; --accent-red: #e74c3c; --shadow-light: rgba(0, 0, 0, 0.1); --shadow-dark: rgba(0, 0, 0, 0.3); --border-color: #e0e0e0; --text-dark: #333; --card-bg: #ffffff; --soft-gray: #f8f8f8; }
body { font-family: 'Poppins', sans-serif; line-height: 1.8; margin: 0; background: linear-gradient(135deg, #e0f2f7 0%, #c1e0e9 100%); color: var(--text-dark); display: flex; justify-content: center; align-items: flex-start; min-height: 100vh; box-sizing: border-box; padding: 60px 20px; overflow-x: hidden; position: relative;
animation: pageLoadIn 1.5s ease-out forwards; opacity: 0; transform: scale(0.98); }
@keyframes pageLoadIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
body::before, body::after { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(52, 152, 219, 0.08); border-radius: 50%; filter: blur(100px); z-index: -1; animation: bgPulse 6s infinite alternate; }
body::before { top: 10%; left: 5%; animation-delay: 0s; }
body::after { bottom: 10%; right: 5%; width: 250px; height: 250px; background: rgba(46, 204, 113, 0.08); animation-delay: 2s; }
@keyframes bgPulse { 0% { transform: scale(1); opacity: 0.1; } 100% { transform: scale(1.1); opacity: 0.2; } }
.resume-container { background-color: var(--card-bg); border-radius: 15px; box-shadow: 0 20px 60px var(--shadow-dark); width: 100%; max-width: 1200px; display: grid; grid-template-columns: 1fr 2fr; gap: 0; overflow: hidden; color: var(--text-dark); animation: scaleIn 0.8s ease-out 0.5s forwards; transform: scale(0.95); opacity: 0; }
@keyframes scaleIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.sidebar { background: linear-gradient(180deg, var(--accent-blue) 0%, #2980b9 100%); padding: 50px 30px; display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--primary-light); position: relative; z-index: 1; animation: slideInLeft 1s ease-out forwards; transform: translateX(-100%); opacity: 0; box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2); }
@keyframes slideInLeft { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.profile-image-container { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; border: 6px solid var(--accent-green); margin-bottom: 25px; box-shadow: 0 0 20px rgba(46, 204, 113, 0.6); transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; }
.profile-image-container::before { content: ''; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; border: 2px solid var(--accent-green); border-radius: 50%; opacity: 0; animation: pulseHalo 2s infinite ease-out; }
@keyframes pulseHalo { 0% { transform: scale(0.8); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 0; } 100% { transform: scale(0.8); opacity: 0.5; } }
.profile-image-container:hover { transform: scale(1.08) rotate(2deg); box-shadow: 0 0 30px rgba(46, 204, 113, 0.8); }
.profile-image { width: 100%; height: 100%; object-fit: cover; }
.sidebar h2 { font-family: 'Playfair Display', serif; font-size: 2.8em; margin-bottom: 5px; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); letter-spacing: 1px; animation: textPopIn 0.8s ease-out 0.8s forwards; transform: translateY(20px); opacity: 0; }
@keyframes textPopIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sidebar p { font-size: 1.2em; opacity: 0.9; margin-top: 5px; margin-bottom: 30px; animation: textPopIn 0.8s ease-out 1s forwards; transform: translateY(20px); opacity: 0; }
.contact-info, .skills { margin-top: 30px; width: 100%; animation: sectionSlideUp 1s ease-out forwards; opacity: 0; transform: translateY(20px); }
.contact-info { animation-delay: 1.2s; } .skills { animation-delay: 1.4s; }
@keyframes sectionSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.contact-info h3, .skills h3 { font-family: 'Poppins', sans-serif; font-size: 1.5em; margin-bottom: 20px; border-bottom: 2px solid rgba(255, 255, 255, 0.4); padding-bottom: 8px; color: var(--primary-light); text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); }
.contact-info p { margin-bottom: 15px; font-size: 1em; display: flex; align-items: center; gap: 12px; transition: transform 0.3s ease-in-out; }
.contact-info p:hover { transform: translateX(8px); }
.contact-info a { color: var(--primary-light); text-decoration: none; transition: color 0.3s ease-in-out, transform 0.2s ease-in-out; display: inline-block; }
.contact-info a:hover { color: var(--accent-green); transform: translateX(5px); text-decoration: underline; }
.skills-list { list-style-type: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.skills-list li { background-color: rgba(255, 255, 255, 0.25); color: var(--primary-light); padding: 10px 18px; border-radius: 25px; font-size: 0.9em; font-weight: 600; border: 1px solid rgba(255, 255, 255, 0.3); transition: background-color 0.3s ease-in-out, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease-in-out; cursor: pointer; }
.skills-list li:hover { background-color: var(--accent-green); color: var(--primary-dark); transform: translateY(-8px) scale(1.05); box-shadow: 0 8px 20px rgba(46, 204, 113, 0.5); }
.main-content { padding: 50px 40px; position: relative; z-index: 0; animation: slideInRight 1s ease-out 0.8s forwards; transform: translateX(100%); opacity: 0; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); background-color: var(--card-bg); }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.section-title { font-family: 'Playfair Display', serif; color: var(--accent-blue); border-bottom: 3px solid var(--accent-green); padding-bottom: 15px; margin-bottom: 40px; font-size: 2.2em; position: relative; text-transform: uppercase; letter-spacing: 1.5px; }
.section-title::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 60px; height: 6px; background-color: var(--accent-red); border-radius: 4px; transform-origin: left; animation: titleUnderlinePop 0.8s ease-out 1.5s forwards; transform: scaleX(0); }
@keyframes titleUnderlinePop { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.summary p { font-size: 1.15em; margin-bottom: 30px; color: var(--text-dark); line-height: 2; }
.timeline-item { margin-bottom: 40px; padding-left: 30px; border-left: 2px solid var(--border-color); position: relative; transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; border-radius: 8px; padding-top: 15px; padding-bottom: 15px; background-color: var(--soft-gray); box-shadow: 0 5px 20px var(--shadow-light); animation: itemSlideIn 1s ease-out forwards; opacity: 0; transform: translateY(20px); } .timeline-item:nth-of-type(1) { animation-delay: 1.8s; } .timeline-item:nth-of-type(2) { animation-delay: 2.0s; } .timeline-item:nth-of-type(3) { animation-delay: 2.2s; } .timeline-item:nth-of-type(4) { animation-delay: 2.4s; } .timeline-item:nth-of-type(5) { animation-delay: 2.6s; } .timeline-item:nth-of-type(6) { animation-delay: 2.8s; }
@keyframes itemSlideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.timeline-item:hover { background-color: rgba(var(--accent-blue-rgb, 52, 152, 219), 0.05); box-shadow: 0 8px 30px rgba(var(--accent-blue-rgb, 52, 152, 219), 0.2); transform: translateY(-5px); transition: all 0.3s ease-in-out; }
.timeline-item::before { content: ''; position: absolute; left: -10px; top: 25px; width: 20px; height: 20px; background-color: var(--accent-blue); border-radius: 50%; border: 4px solid var(--card-bg); box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out; }
.timeline-item:hover::before { background-color: var(--accent-green); transform: scale(1.3) rotate(360deg); }
.item-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; font-size: 1.5em; transition: color 0.3s ease-in-out; }
.timeline-item:hover .item-title { color: var(--accent-blue); }
.item-details { color: #777; font-size: 1em; margin-bottom: 12px; font-style: italic; display: flex; align-items: center; gap: 10px; } .item-details span { color: var(--accent-green); }
.item-description { margin-bottom: 15px; font-size: 1em; color: #555; }
.item-description ul { list-style-type: none; padding-left: 0; margin-top: 10px; }
.item-description li { margin-bottom: 8px; position: relative; padding-left: 20px; }
.item-description li::before { content: '•'; position: absolute; left: 0; color: var(--accent-green); font-size: 1.2em; line-height: 1.6; }
.project-item { background-color: var(--soft-gray); border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); padding: 20px; text-align: center; transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; }
.project-item:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }
.project-item img { max-width: 100%; border-radius: 8px; margin-bottom: 15px; border: 1px solid var(--border-color); }
.project-item h3 { color: var(--primary-dark); margin-bottom: 10px; font-size: 1.3em; }
.project-item p { color: #666; font-size: 0.95em; margin-bottom: 15px; line-height: 1.6; }
.project-item a.btn { display: inline-block; background-color: var(--accent-green); color: var(--primary-light); padding: 10px 20px; border-radius: 25px; text-decoration: none; font-weight: 600; transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out; }
.project-item a.btn:hover { background-color: #27ae60; transform: translateY(-2px); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
@media (max-width: 992px) { .resume-container { grid-template-columns: 1fr; gap: 0; border-radius: 10px; } .sidebar { border-radius: 10px 10px 0 0; padding: 40px 20px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); } .main-content { padding: 40px 20px; box-shadow: none; } .sidebar h2 { font-size: 2.2em; } .sidebar p { font-size: 1em; } .section-title { font-size: 1.8em; margin-bottom: 30px; } .timeline-item { margin-bottom: 30px; padding-left: 25px; } .timeline-item::before { width: 16px; height: 16px; left: -8px; } .projects-grid { grid-template-columns: 1fr; } }
@media (max-width: 576px) { body { padding: 20px 10px; } .resume-container { padding: 0; } .sidebar { padding: 30px 15px; } .main-content { padding: 30px 15px; } .profile-image-container { width: 120px; height: 120px; } .sidebar h2 { font-size: 1.8em; } .sidebar p { font-size: 0.9em; } .skills-list li { padding: 8px 12px; font-size: 0.8em; } .section-title { font-size: 1.5em; } .item-title { font-size: 1.2em; } .item-details, .item-description, .project-item p, .project-item a.btn { font-size: 0.9em; } } </style> </head> <body> <div class="resume-container"> <div class="sidebar"> <div class="profile-image-container"> <img src="https://via.placeholder.com/160/3498db/ffffff?text=Your+Photo" alt="Your Photo" class="profile-image"> </div> <h2>[你的名字]</h2> <p>[你的职业/头衔]</p>
<div class="contact-info"> <h3>联系方式</h3> <p><i class="fas fa-envelope"></i> 邮箱: [email protected]</p> <p><i class="fas fa-phone"></i> 电话: +123 456 7890</p> <p><i class="fas fa-map-marker-alt"></i> 城市: Your City</p> <p><i class="fab fa-github"></i> GitHub: <a href="#">yourgithub</a></p> <p><i class="fab fa-linkedin"></i> LinkedIn: <a href="#">yourlinkedin</a></p> </div>
<div class="skills"> <h3>核心技能</h3> <ul class="skills-list"> <li>HTML5</li> <li>CSS3</li> <li>JavaScript</li> <li>React</li> <li>Node.js</li> <li>SQL</li> <li>Python</li> <li>Git</li> <li>UI/UX 设计</li> </ul> </div> </div>
<div class="main-content"> <section class="summary"> <h2 class="section-title">关于我</h2> <p>在这里写你的个人简介。突出你的热情、经验和独特之处。用简洁有力的语言吸引招聘者的注意。例如:一位充满激情的前端开发者,拥有5年行业经验,致力于通过创新技术创造用户友好的数字体验。精通React、Node.js及现代Web开发工具,专注于构建高性能、可扩展的应用程序。</p> </section>
<section class="experience"> <h2 class="section-title">工作经历</h2> <div class="timeline"> <div class="timeline-item"> <h3 class="item-title">高级前端工程师</h3> <div class="item-details"><i class="far fa-building"></i> 公司A, 城市A <span style="margin-left: auto;"><i class="far fa-calendar-alt"></i> 2022年1月 - 至今</span></div> <div class="item-description"> <ul> <li>主导开发了基于 React 的新一代电商平台前端,提升用户体验 **30%**。</li> <li>优化了前端构建流程,将项目加载时间缩短了 **20%**。</li> <li>与后端团队紧密合作,设计并实现了多项 RESTful API 接口。</li> <li>指导初级工程师,并推行代码审查机制,显著提高了团队代码质量。</li> </ul> </div> </div> <div class="timeline-item"> <h3 class="item-title">前端开发工程师</h3> <div class="item-details"><i class="far fa-building"></i> 公司B, 城市B <span style="margin-left: auto;"><i class="far fa-calendar-alt"></i> 2018年7月 - 2021年12月</span></div> <div class="item-description"> <ul> <li>参与开发了公司核心产品的移动端Web应用,负责UI组件的开发与维护。</li> <li>利用 Vue.js 构建了数据可视化仪表盘,提高了运营效率。</li> <li>协助修复了多个线上Bug,保证了产品的稳定运行。</li> </ul> </div> </div> </div> </section>
<section class="education"> <h2 class="section-title">教育背景</h2> <div class="timeline"> <div class="timeline-item"> <h3 class="item-title">计算机科学与技术 本科</h3> <div class="item-details"><i class="fas fa-university"></i> 某某大学, 某某城市 <span style="margin-left: auto;"><i class="far fa-calendar-alt"></i> 2014年9月 - 2018年6月</span></div> <div class="item-description"> <ul> <li>主修数据结构、算法、操作系统、计算机网络等课程。</li> <li>荣获校级“优秀毕业生”称号,参与了多个Web开发相关项目。</li> </ul> </div> </div> </div> </section>
<section class="projects"> <h2 class="section-title">精选项目</h2> <div class="projects-grid"> <div class="project-item"> <img src="https://via.placeholder.com/400x250/2ecc71/ffffff?text=电商管理后台" alt="电商管理后台"> <h3>电商管理后台</h3> <p>基于 React 和 Ant Design 开发的电商后台管理系统,实现了商品管理、订单管理、用户管理等核心功能。</p> <a href="#" class="btn">查看项目</a> </div> <div class="project-item"> <img src="https://via.placeholder.com/400x250/3498db/ffffff?text=个人博客系统" alt="个人博客系统"> <h3>个人博客系统</h3> <p>使用 Node.js (Express) 和 MongoDB 构建的响应式个人博客,支持文章发布、评论互动、标签分类等。</p> <a href="#" class="btn">查看项目</a> </div> </div> </section> </div> </div> </body> </html>
|