File manager - Edit - /home/webapp69.cm.in.th/u69319090012/portfolio/index.html
Back
<!DOCTYPE html> <html lang="th"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>ธนภัทร ฟองมี | Portfolio</title> <meta name="description" content="แฟ้มสะสมผลงาน (Portfolio) ของ นายธนภัทร ฟองมี - นักศึกษาวิทยาลัยเทคนิคเชียงใหม่"> <!-- Google Fonts: Prompt & Outfit for modern look --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Prompt:wght@300;400;500;600;700&display=swap" rel="stylesheet"> <!-- Font Awesome Icons --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <style> /* ========================================== 1. DESIGN TOKENS & RESET ========================================== */ :root { --bg-dark: #070d19; --bg-card: rgba(15, 25, 47, 0.7); --bg-nav: rgba(7, 13, 25, 0.85); --color-primary: #1e3a8a; /* Deep Navy */ --color-primary-light: #3b82f6; /* Accent Blue */ --color-secondary: #0f172a; --color-accent: #60a5fa; /* Glow Blue */ --color-text-main: #f8fafc; --color-text-muted: #94a3b8; --color-white: #ffffff; --color-border: rgba(255, 255, 255, 0.08); --font-family: 'Outfit', 'Prompt', sans-serif; --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); --glow-shadow: 0 0 30px rgba(59, 130, 246, 0.2); --glass-blur: blur(12px); } body.light-theme { --bg-dark: #f8fafc; --bg-card: rgba(255, 255, 255, 0.85); --bg-nav: rgba(248, 250, 252, 0.85); --color-primary: #3b82f6; --color-primary-light: #1e3a8a; --color-secondary: #e2e8f0; --color-accent: #2563eb; --color-text-main: #0f172a; --color-text-muted: #475569; --color-white: #0f172a; --color-border: rgba(0, 0, 0, 0.08); --glow-shadow: 0 0 30px rgba(37, 99, 235, 0.15); } * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; } body { background-color: var(--bg-dark); color: var(--color-text-main); font-family: var(--font-family); line-height: 1.6; overflow-x: hidden; position: relative; transition: background-color 0.3s ease, color 0.3s ease; } /* Ambient Orbs */ .ambient-glow { position: absolute; width: 50vw; height: 50vw; border-radius: 50%; background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, rgba(0, 0, 0, 0) 70%); filter: blur(80px); z-index: -1; pointer-events: none; } .orb-1 { top: -10vw; right: -10vw; } .orb-2 { top: 50vh; left: -10vw; background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0, 0, 0, 0) 70%); } .orb-3 { bottom: -10vw; right: 10vw; } /* Custom Scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: var(--bg-dark); } ::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #334155; } /* Common Containers */ .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; } section { padding: 100px 0; position: relative; } /* Titles & Badges */ .badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); color: var(--color-accent); padding: 6px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; width: fit-content; } .badge-dot { width: 8px; height: 8px; background-color: var(--color-accent); border-radius: 50%; display: inline-block; box-shadow: 0 0 8px var(--color-accent); } .gradient-text { background: linear-gradient(135deg, var(--color-white) 30%, var(--color-accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .section-header { text-align: center; margin-bottom: 60px; } .section-title { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 15px; position: relative; display: inline-block; } .section-subtitle { color: var(--color-text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; } /* Buttons */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 28px; border-radius: 10px; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: var(--transition-smooth); text-decoration: none; border: none; } .btn-primary { background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%); color: #ffffff; box-shadow: var(--glow-shadow); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4); } .btn-secondary { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--color-border); color: var(--color-text-main); } .btn-secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-2px); } /* ========================================== 2. HEADER & NAVBAR ========================================== */ header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition-smooth); border-bottom: 1px solid transparent; } header.scrolled { background: var(--bg-nav); backdrop-filter: var(--glass-blur); border-bottom: 1px solid var(--color-border); padding: 15px 0; } .nav-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; transition: var(--transition-smooth); } header.scrolled .nav-wrapper { padding: 0; } .logo { font-size: 1.5rem; font-weight: 700; color: var(--color-white); text-decoration: none; display: flex; align-items: center; gap: 8px; } .logo span { color: var(--color-accent); } .nav-links { display: flex; align-items: center; gap: 32px; } .nav-link { color: var(--color-text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 400; transition: var(--transition-smooth); position: relative; } .nav-link:hover, .nav-link.active { color: var(--color-white); } .nav-link::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background-color: var(--color-accent); transition: var(--transition-smooth); } .nav-link:hover::after, .nav-link.active::after { width: 100%; } .menu-btn { display: none; background: none; border: none; color: var(--color-text-main); font-size: 1.5rem; cursor: pointer; } /* ========================================== 3. HERO SECTION ========================================== */ .hero { min-height: 100vh; display: flex; align-items: center; padding-top: 120px; } .hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; } .hero-title-main { font-size: 4rem; line-height: 1.1; font-weight: 800; letter-spacing: -2px; margin-bottom: 20px; } .hero-subtitle-main { font-size: 1.25rem; color: var(--color-text-muted); margin-bottom: 35px; max-width: 580px; } .hero-btns { display: flex; gap: 16px; } .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; } .avatar-glow-wrapper { position: relative; width: 300px; height: 420px; border-radius: 0; background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%); box-shadow: 0 0 40px rgba(59, 130, 246, 0.25); border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; overflow: hidden; transition: var(--transition-smooth); } .avatar-glow-wrapper:hover { transform: translateY(-5px); border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 0 50px rgba(59, 130, 246, 0.4); } .avatar-glow-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; transition: var(--transition-smooth); } .avatar-glow-wrapper:hover img { transform: scale(1.05); } .avatar-content { text-align: center; color: var(--color-white); } .avatar-content i { font-size: 6rem; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3)); } .avatar-subtitle { margin-top: 10px; font-weight: 600; letter-spacing: 1px; font-size: 0.9rem; text-transform: uppercase; opacity: 0.9; } @keyframes morphing { 0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; } 50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; } 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; } } /* ========================================== 4. ABOUT ME / PROFILE SECTION ========================================== */ .about-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: stretch; } .about-image-card { border-radius: 0; overflow: hidden; border: 1px solid var(--color-border); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); position: relative; min-height: 400px; transition: var(--transition-smooth); } .about-image-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 13, 25, 0) 60%, rgba(7, 13, 25, 0.8) 100%); z-index: 1; pointer-events: none; } .about-image-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: var(--transition-smooth); } .about-image-card:hover { border-color: rgba(59, 130, 246, 0.2); transform: translateY(-4px); } .about-image-card:hover img { transform: scale(1.03); } .about-card { background: var(--bg-card); border: 1px solid var(--color-border); border-radius: 20px; padding: 40px; backdrop-filter: var(--glass-blur); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); transition: var(--transition-smooth); } .about-card:hover { border-color: rgba(59, 130, 246, 0.2); transform: translateY(-4px); } .about-card h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--color-white); } .about-card p { color: var(--color-text-muted); margin-bottom: 25px; } .profile-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; } .info-item { display: flex; flex-direction: column; gap: 6px; } .info-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-muted); } .info-value { font-size: 1.05rem; font-weight: 500; color: var(--color-white); display: flex; align-items: center; gap: 8px; } .info-value a { color: var(--color-white); text-decoration: none; transition: var(--transition-smooth); } .info-value a:hover { color: var(--color-accent); } .copy-btn { background: none; border: none; color: var(--color-text-muted); cursor: pointer; transition: var(--transition-smooth); font-size: 0.9rem; } .copy-btn:hover { color: var(--color-accent); transform: scale(1.1); } /* ========================================== 5. EDUCATION SECTION (Timeline style) ========================================== */ .timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 30px; } .timeline::before { content: ''; position: absolute; left: 0; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-primary) 100%); } .timeline-item { position: relative; margin-bottom: 50px; } .timeline-item:last-child { margin-bottom: 0; } .timeline-dot { position: absolute; left: -39px; top: 8px; width: 20px; height: 20px; border-radius: 50%; background-color: var(--bg-dark); border: 4px solid var(--color-accent); z-index: 2; transition: var(--transition-smooth); } .timeline-item:hover .timeline-dot { background-color: var(--color-accent); box-shadow: 0 0 15px var(--color-accent); } .timeline-content { background: var(--bg-card); border: 1px solid var(--color-border); border-radius: 16px; padding: 30px; backdrop-filter: var(--glass-blur); transition: var(--transition-smooth); } .timeline-item:hover .timeline-content { border-color: rgba(59, 130, 246, 0.2); transform: translateX(10px); } .timeline-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 15px; } .timeline-year { background: rgba(59, 130, 246, 0.1); color: var(--color-accent); padding: 4px 12px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; } .timeline-tag { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--color-border); color: var(--color-text-main); padding: 4px 12px; border-radius: 100px; font-size: 0.8rem; font-weight: 500; } .timeline-title { font-size: 1.4rem; font-weight: 600; color: var(--color-white); margin-bottom: 5px; } .timeline-sub { font-size: 1rem; color: var(--color-text-muted); } /* ========================================== 6. SKILLS & PROJECTS SECTION ========================================== */ .skills-section-wrapper { margin-bottom: 60px; } .skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; } .skill-card { background: var(--bg-card); border: 1px solid var(--color-border); padding: 24px; border-radius: 14px; text-align: center; transition: var(--transition-smooth); } .skill-card:hover { transform: translateY(-5px); border-color: rgba(59, 130, 246, 0.3); box-shadow: var(--glow-shadow); } .skill-card i { font-size: 2.2rem; color: var(--color-accent); margin-bottom: 12px; } .skill-card h4 { font-size: 1rem; font-weight: 500; } /* Projects Section */ .projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; } .project-card { background: var(--bg-card); border: 1px solid var(--color-border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: var(--transition-smooth); } .project-card:hover { transform: translateY(-8px); border-color: rgba(59, 130, 246, 0.2); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); } .project-placeholder-visual { height: 200px; background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(15, 23, 42, 0.8) 100%); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--color-border); position: relative; } .project-placeholder-visual i { font-size: 3.5rem; color: rgba(59, 130, 246, 0.3); transition: var(--transition-smooth); } .project-card:hover .project-placeholder-visual i { color: var(--color-accent); transform: scale(1.1); } .project-body { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; } .project-title { font-size: 1.25rem; font-weight: 600; color: var(--color-white); margin-bottom: 10px; } .project-desc { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; } .project-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--color-border); padding-top: 15px; font-size: 0.85rem; color: var(--color-text-muted); } .project-tags { display: flex; gap: 8px; } .project-tag { background: rgba(255, 255, 255, 0.05); padding: 2px 8px; border-radius: 4px; } /* ========================================== 7. CONTACT SECTION & FOOTER ========================================== */ .contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; } .contact-info-panel h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--color-white); } .contact-info-panel p { color: var(--color-text-muted); margin-bottom: 30px; } .contact-methods { display: flex; flex-direction: column; gap: 20px; } .contact-card { background: var(--bg-card); border: 1px solid var(--color-border); border-radius: 12px; padding: 20px; display: flex; align-items: center; gap: 20px; transition: var(--transition-smooth); } .contact-card:hover { border-color: rgba(59, 130, 246, 0.2); transform: translateX(5px); } .contact-icon-box { width: 50px; height: 50px; border-radius: 10px; background: rgba(59, 130, 246, 0.1); color: var(--color-accent); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; } .contact-details h5 { font-size: 0.85rem; color: var(--color-text-muted); text-transform: uppercase; margin-bottom: 2px; } .contact-details p { margin: 0; color: var(--color-white); font-weight: 500; } .contact-form { background: var(--bg-card); border: 1px solid var(--color-border); border-radius: 20px; padding: 40px; backdrop-filter: var(--glass-blur); } .form-group { margin-bottom: 20px; } .form-label { display: block; font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 8px; font-weight: 500; } .form-control { width: 100%; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--color-border); border-radius: 8px; padding: 12px 16px; color: var(--color-white); font-family: var(--font-family); font-size: 0.95rem; transition: var(--transition-smooth); } .form-control:focus { outline: none; border-color: var(--color-primary-light); box-shadow: 0 0 10px rgba(59, 130, 246, 0.2); } textarea.form-control { resize: vertical; min-height: 120px; } footer { border-top: 1px solid var(--color-border); padding: 40px 0; background-color: #040810; } .footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; } .footer-text { color: var(--color-text-muted); font-size: 0.9rem; } .footer-socials { display: flex; gap: 16px; } .social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--color-border); color: var(--color-text-muted); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition-smooth); } .social-link:hover { background: rgba(59, 130, 246, 0.1); color: var(--color-accent); border-color: var(--color-accent); transform: translateY(-2px); } /* Success Toast Notification */ .toast { position: fixed; bottom: 30px; right: 30px; background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(34, 197, 94, 0.3); border-radius: 12px; padding: 16px 24px; display: flex; align-items: center; gap: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); transform: translateY(100px); opacity: 0; transition: var(--transition-smooth); z-index: 2000; backdrop-filter: var(--glass-blur); } .toast.show { transform: translateY(0); opacity: 1; } .toast-icon { color: #22c55e; font-size: 1.5rem; } .toast-title { font-weight: 600; color: var(--color-white); margin-bottom: 2px; } .toast-desc { font-size: 0.85rem; color: var(--color-text-muted); } /* ========================================== 8. RESPONSIVE DESIGN (Media Queries) ========================================== */ @media (max-width: 992px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; } .hero-title-main { font-size: 3rem; } .hero-subtitle-main { margin-left: auto; margin-right: auto; } .hero-btns { justify-content: center; } .about-layout { grid-template-columns: 1fr; } .contact-layout { grid-template-columns: 1fr; gap: 40px; } } @media (max-width: 768px) { header { padding: 15px 0; background: var(--bg-nav); backdrop-filter: var(--glass-blur); border-bottom: 1px solid var(--color-border); } .nav-links { display: none; /* In production: a toggleable mobile menu */ } .nav-links.mobile-active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-dark); border-bottom: 1px solid var(--color-border); padding: 30px 24px; gap: 20px; z-index: 999; } .menu-btn { display: block; } .avatar-glow-wrapper { width: 260px; height: 260px; } .profile-info-grid { grid-template-columns: 1fr; } .section-title { font-size: 2rem; } .bottom-nav { display: flex; } .floating-contact-btn { display: flex; bottom: 100px; } .theme-toggle-btn { bottom: 170px; } } /* ========================================== 9. BOTTOM NAVIGATION BAR (Floating & Mobile) ========================================== */ .bottom-nav { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); width: calc(100% - 48px); max-width: 440px; height: 66px; background: rgba(15, 25, 47, 0.75); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50px; display: none; justify-content: space-around; align-items: center; padding: 0 16px; z-index: 1500; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1); transition: var(--transition-smooth); } .bottom-nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--color-text-muted); text-decoration: none; font-size: 0.7rem; font-weight: 500; transition: var(--transition-smooth); gap: 4px; padding: 6px 12px; border-radius: 12px; min-width: 65px; } .bottom-nav-item i { font-size: 1.15rem; transition: var(--transition-smooth); } .bottom-nav-item:hover, .bottom-nav-item.active { color: var(--color-accent); } .bottom-nav-item.active i { transform: translateY(-2px); text-shadow: 0 0 10px rgba(96, 165, 250, 0.5); } .floating-contact-btn { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%); color: #ffffff; border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: var(--glow-shadow); transition: var(--transition-smooth); z-index: 1500; border: 1px solid rgba(255, 255, 255, 0.1); text-decoration: none; } .floating-contact-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4); color: #ffffff; } /* Theme Toggle Button */ .theme-toggle-btn { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: var(--bg-card); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); color: var(--color-text-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); transition: var(--transition-smooth); z-index: 1500; border: 1px solid var(--color-border); cursor: pointer; } .theme-toggle-btn:hover { transform: scale(1.08) translateY(-2px); border-color: var(--color-accent); } @media (max-width: 768px) { .theme-toggle-btn { bottom: 170px; /* Float above phone button on mobile */ } } </style> </head> <body> <!-- Background glow elements --> <div class="ambient-glow orb-1"></div> <div class="ambient-glow orb-2"></div> <div class="ambient-glow orb-3"></div> <!-- Header / Navigation --> <header id="main-header"> <div class="container nav-wrapper"> <a href="#home" class="logo"> <span><</span>Thanaphat<span>.Dev /></span> </a> <nav class="nav-links" id="navbar-links"> <a href="#home" class="nav-link active">Home</a> <a href="#about" class="nav-link">About</a> <a href="#education" class="nav-link">Education</a> <a href="#skills-projects" class="nav-link">Skills & Projects</a> <a href="#contact" class="nav-link">Contact</a> </nav> <button class="menu-btn" id="mobile-menu-toggle" aria-label="Toggle Menu"> <i class="fa-solid fa-bars"></i> </button> </div> </header> <!-- Main Content --> <main> <!-- 1. Hero Section --> <section class="hero" id="home"> <div class="container hero-grid"> <div class="hero-text-content"> <div class="badge"> <span class="badge-dot"></span> พร้อมสำหรับการพัฒนาสิ่งใหม่ๆ </div> <h1 class="hero-title-main"> สวัสดีครับ, ผม <br> <span class="gradient-text">ธนภัทร ฟองมี</span> </h1> <p class="hero-subtitle-main"> กำลังศึกษาระดับประกาศนียบัตรวิชาชีพชั้นสูง (ปวศ.) ที่วิทยาลัยเทคนิคเชียงใหม่ มุ่งมั่นที่จะเรียนรู้การพัฒนาเว็บไซต์และเทคโนโลยีสมัยใหม่เพื่อสร้างสรรค์ผลงานคุณภาพ </p> <div class="hero-btns"> <a href="#contact" class="btn btn-primary">ติดต่อฉัน <i class="fa-solid fa-paper-plane"></i></a> <a href="#about" class="btn btn-secondary">ข้อมูลส่วนตัว <i class="fa-solid fa-circle-user"></i></a> </div> </div> <div class="hero-visual"> <div class="avatar-glow-wrapper"> <img src="assets/profile_thanaphat.png" alt="Thanaphat Fongmee Profile"> </div> </div> </div> </section> <!-- 2. About Me Section --> <section id="about"> <div class="container"> <div class="section-header"> <span class="badge">Profile</span> <h2 class="section-title">เกี่ยวกับฉัน</h2> <p class="section-subtitle">ข้อมูลส่วนตัวและช่องทางการติดต่อของฉัน</p> </div> <div class="about-layout"> <!-- Left Column: Portrait Profile Image --> <div class="about-image-card"> <img src="assets/profile_thanaphat.png" alt="นายธนภัทร ฟองมี"> </div> <!-- Right Column: Personal details and contact info --> <div class="about-info-col" style="display: flex; flex-direction: column; gap: 30px;"> <div class="about-card"> <h3>ประวัติส่วนตัว</h3> <p> ผมชื่อ นาย ธนภัทร ฟองมี (Thanaphat Fongmee) เป็นคนที่ชื่นชอบในด้านเทคโนโลยีคอมพิวเตอร์และการพัฒนาเว็บไซต์ มีความมุ่งมั่นในการพัฒนาฝีมือเพื่อพัฒนาซอฟต์แวร์ที่ตอบโจทย์ความต้องการของผู้ใช้งานอย่างแท้จริง </p> <div class="profile-info-grid"> <div class="info-item"> <span class="info-label">วันเกิด</span> <span class="info-value">6 พฤศจิกายน 2550</span> </div> <div class="info-item"> <span class="info-label">สัญชาติ</span> <span class="info-value">ไทย</span> </div> </div> </div> <div class="about-card"> <h3>ช่องทางการติดต่อ</h3> <p>สามารถติดต่อพูดคุย สอบถามข้อมูล หรือติดต่องานได้ผ่านช่องทางด้านล่างนี้</p> <div class="profile-info-grid"> <div class="info-item"> <span class="info-label">เบอร์โทรศัพท์</span> <span class="info-value"> 099-039-2326 <button class="copy-btn" onclick="copyText('099-039-2326')" title="Copy Phone Number"> <i class="fa-regular fa-copy"></i> </button> </span> </div> <div class="info-item"> <span class="info-label">อีเมล</span> <span class="info-value"> <a href="mailto:69319090012@atc.ac.th">69319090012@atc.ac.th</a> <button class="copy-btn" onclick="copyText('69319090012@atc.ac.th')" title="Copy Email"> <i class="fa-regular fa-copy"></i> </button> </span> </div> </div> </div> </div> </div> </div> </section> <!-- 3. Education Section --> <section id="education"> <div class="container"> <div class="section-header"> <span class="badge">Education Timeline</span> <h2 class="section-title">ประวัติการศึกษา</h2> <p class="section-subtitle">เส้นทางการศึกษาที่วิทยาลัยเทคนิคเชียงใหม่</p> </div> <div class="timeline"> <!-- Timeline Item 2 (Current) --> <div class="timeline-item"> <div class="timeline-dot"></div> <div class="timeline-content"> <div class="timeline-header"> <span class="timeline-year">ปัจจุบัน</span> <span class="timeline-tag">กำลังศึกษา</span> </div> <h3 class="timeline-title">ระดับประกาศนียบัตรวิชาชีพชั้นสูง (ปวศ.)</h3> <p class="timeline-sub"><i class="fa-solid fa-school"></i> วิทยาลัยเทคนิคเชียงใหม่</p> </div> </div> <!-- Timeline Item 1 (Graduated) --> <div class="timeline-item"> <div class="timeline-dot"></div> <div class="timeline-content"> <div class="timeline-header"> <span class="timeline-year">ปี 2568</span> <span class="timeline-tag">สำเร็จการศึกษา</span> </div> <h3 class="timeline-title">ระดับประกาศนียบัตรวิชาชีพ (ปวช.)</h3> <p class="timeline-sub"><i class="fa-solid fa-school"></i> วิทยาลัยเทคนิคเชียงใหม่</p> </div> </div> </div> </div> </section> <!-- 4. Skills & Projects Section --> <section id="skills-projects"> <div class="container"> <div class="section-header"> <span class="badge">Skills & Future Projects</span> <h2 class="section-title">ทักษะและผลงาน</h2> <p class="section-subtitle">พื้นที่แสดงทักษะความสามารถและแผนงานพัฒนาโปรเจกต์ในอนาคต</p> </div> <!-- Skills Sub-section --> <div class="skills-section-wrapper"> <h3 style="margin-bottom: 25px; font-size: 1.6rem;"><i class="fa-solid fa-bolt" style="color: var(--color-accent);"></i> ทักษะความสามารถ (Skills)</h3> <div class="skills-grid"> <div class="skill-card"> <i class="fa-brands fa-html5"></i> <h4>HTML5</h4> </div> <div class="skill-card"> <i class="fa-brands fa-css3-alt"></i> <h4>CSS3</h4> </div> <div class="skill-card"> <i class="fa-brands fa-js"></i> <h4>JavaScript</h4> </div> <div class="skill-card"> <i class="fa-solid fa-laptop-code"></i> <h4>Responsive Design</h4> </div> </div> </div> <!-- Projects Sub-section (Placeholders) --> <div> <h3 style="margin-bottom: 25px; font-size: 1.6rem;"><i class="fa-solid fa-diagram-project" style="color: var(--color-accent);"></i> ผลงานสร้างสรรค์ (Projects Showcase)</h3> <div class="projects-grid"> <!-- Project Placeholder 1 --> <div class="project-card"> <div class="project-placeholder-visual"> <i class="fa-solid fa-file-code"></i> </div> <div class="project-body"> <h4 class="project-title">Future Project #1</h4> <p class="project-desc">พื้นที่สำหรับแสดงผลงานชิ้นถัดไป เช่น การพัฒนาเว็บแอปพลิเคชัน คลังระบบฐานข้อมูล หรือโปรเจกต์ส่งเสริมการเรียนรู้</p> <div class="project-footer"> <div class="project-tags"> <span class="project-tag">HTML</span> <span class="project-tag">CSS</span> </div> <span>Coming Soon</span> </div> </div> </div> <!-- Project Placeholder 2 --> <div class="project-card"> <div class="project-placeholder-visual"> <i class="fa-solid fa-object-group"></i> </div> <div class="project-body"> <h4 class="project-title">Future Project #2</h4> <p class="project-desc">พื้นที่สำหรับการพัฒนาเว็บดีไซน์สมัยใหม่ที่ตอบโจทย์ Responsive Design เต็มรูปแบบสำหรับธุรกิจหรือองค์กร</p> <div class="project-footer"> <div class="project-tags"> <span class="project-tag">UI/UX</span> <span class="project-tag">JS</span> </div> <span>Coming Soon</span> </div> </div> </div> <!-- Project Placeholder 3 --> <div class="project-card"> <div class="project-placeholder-visual"> <i class="fa-solid fa-cube"></i> </div> <div class="project-body"> <h4 class="project-title">Future Project #3</h4> <p class="project-desc">โครงการพัฒนาเครื่องมือ หรือซอฟต์แวร์สนับสนุนการทำงานที่จะเริ่มพัฒนาในอนาคตอันใกล้</p> <div class="project-footer"> <div class="project-tags"> <span class="project-tag">Backend</span> <span class="project-tag">API</span> </div> <span>Coming Soon</span> </div> </div> </div> </div> </div> </div> </section> <!-- 5. Contact Section --> <section id="contact"> <div class="container"> <div class="section-header"> <span class="badge">Contact</span> <h2 class="section-title">ติดต่อฉัน</h2> <p class="section-subtitle">ส่งข้อความทักทาย หรือสอบถามข้อมูลเพิ่มเติมได้เลย</p> </div> <div class="contact-layout"> <div class="contact-info-panel"> <h3>มาพูดคุยแลกเปลี่ยนไอเดียกัน</h3> <p>ยินดีต้อนรับความร่วมมือและโอกาสใหม่ๆ เสมอ สามารถฝากข้อความไว้ทางแบบฟอร์ม หรือติดต่อผ่านช่องทางโซเชียลมีเดียของผมได้เลยครับ</p> <div class="contact-methods"> <div class="contact-card"> <div class="contact-icon-box"> <i class="fa-solid fa-envelope"></i> </div> <div class="contact-details"> <h5>อีเมลส่วนตัว</h5> <p>69319090012@atc.ac.th</p> </div> </div> <div class="contact-card"> <div class="contact-icon-box"> <i class="fa-solid fa-phone"></i> </div> <div class="contact-details"> <h5>เบอร์โทรศัพท์</h5> <p>099-039-2326</p> </div> </div> </div> </div> <div> <form class="contact-form" id="contact-form"> <div class="form-group"> <label for="client-name" class="form-label">ชื่อของคุณ</label> <input type="text" id="client-name" class="form-control" placeholder="ชื่อ นามสกุล หรือบริษัท" required> </div> <div class="form-group"> <label for="client-email" class="form-label">อีเมลติดต่อกลับ</label> <input type="email" id="client-email" class="form-control" placeholder="example@domain.com" required> </div> <div class="form-group"> <label for="client-msg" class="form-label">รายละเอียดข้อความ</label> <textarea id="client-msg" class="form-control" placeholder="พิมพ์ข้อความที่นี่..." required></textarea> </div> <button type="submit" class="btn btn-primary" style="width: 100%;"> ส่งข้อความ <i class="fa-solid fa-paper-plane"></i> </button> </form> </div> </div> </div> </section> </main> <!-- Footer --> <footer> <div class="container footer-grid"> <div class="footer-text"> © 2026 นาย ธนภัทร ฟองมี. All rights reserved. </div> <div class="footer-socials"> <a href="#" class="social-link" aria-label="GitHub"><i class="fa-brands fa-github"></i></a> <a href="#" class="social-link" aria-label="Facebook"><i class="fa-brands fa-facebook-f"></i></a> <a href="mailto:69319090012@atc.ac.th" class="social-link" aria-label="Email"><i class="fa-solid fa-envelope"></i></a> </div> </div> </footer> <!-- Bottom Navigation Bar for Mobile --> <nav class="bottom-nav"> <a href="#home" class="bottom-nav-item active"> <i class="fa-solid fa-house"></i> <span>Home</span> </a> <a href="#about" class="bottom-nav-item"> <i class="fa-solid fa-circle-user"></i> <span>About</span> </a> <a href="#education" class="bottom-nav-item"> <i class="fa-solid fa-graduation-cap"></i> <span>Education</span> </a> <a href="#skills-projects" class="bottom-nav-item"> <i class="fa-solid fa-briefcase"></i> <span>Skills & Projects</span> </a> </nav> <!-- Floating Action Button for Contact --> <a href="#contact" class="floating-contact-btn" aria-label="Contact Me"> <i class="fa-solid fa-phone"></i> </a> <!-- Floating Theme Toggle Button --> <button class="theme-toggle-btn" id="theme-toggle" aria-label="Toggle Theme"> <i class="fa-solid fa-sun"></i> </button> <!-- Toast Success Notification --> <div class="toast" id="success-toast"> <i class="fa-solid fa-circle-check toast-icon"></i> <div> <div class="toast-title">ส่งข้อความสำเร็จ!</div> <div class="toast-desc">ขอขอบคุณสำหรับการติดต่อ ผมจะรีบตอบกลับโดยเร็วที่สุดครับ</div> </div> </div> <!-- Main JavaScript Logic --> <script> // Copy to clipboard helper function copyText(text) { navigator.clipboard.writeText(text).then(() => { alert('คัดลอกข้อมูลเรียบร้อยแล้ว: ' + text); }).catch(err => { console.error('Failed to copy: ', err); }); } document.addEventListener('DOMContentLoaded', () => { // Header scroll styling handler const header = document.getElementById('main-header'); window.addEventListener('scroll', () => { if (window.scrollY > 50) { header.classList.add('scrolled'); } else { header.classList.remove('scrolled'); } }); // Mobile menu toggling const menuToggleBtn = document.getElementById('mobile-menu-toggle'); const navLinksContainer = document.getElementById('navbar-links'); menuToggleBtn.addEventListener('click', () => { navLinksContainer.classList.toggle('mobile-active'); const isOpened = navLinksContainer.classList.contains('mobile-active'); menuToggleBtn.innerHTML = isOpened ? '<i class="fa-solid fa-xmark"></i>' : '<i class="fa-solid fa-bars"></i>'; }); // Close mobile menu on clicking links, and handle active states const navLinks = document.querySelectorAll('.nav-link'); const bottomNavLinks = document.querySelectorAll('.bottom-nav-item'); const sections = document.querySelectorAll('section[id]'); navLinks.forEach(link => { link.addEventListener('click', () => { navLinksContainer.classList.remove('mobile-active'); menuToggleBtn.innerHTML = '<i class="fa-solid fa-bars"></i>'; // Update active state manually on click navLinks.forEach(item => item.classList.remove('active')); link.classList.add('active'); }); }); bottomNavLinks.forEach(link => { link.addEventListener('click', () => { bottomNavLinks.forEach(item => item.classList.remove('active')); link.classList.add('active'); }); }); // Scroll active highlighting const observerOptions = { root: null, rootMargin: '-20% 0px -60% 0px', threshold: 0 }; const observerCallback = (entries) => { entries.forEach(entry => { if (entry.isIntersecting) { const id = entry.target.getAttribute('id'); // Update top nav navLinks.forEach(link => { if (link.getAttribute('href') === `#${id}`) { link.classList.add('active'); } else { link.classList.remove('active'); } }); // Update bottom nav bottomNavLinks.forEach(link => { if (link.getAttribute('href') === `#${id}`) { link.classList.add('active'); } else { link.classList.remove('active'); } }); } }); }; const sectionObserver = new IntersectionObserver(observerCallback, observerOptions); sections.forEach(section => { sectionObserver.observe(section); }); // Form Submit handler const contactForm = document.getElementById('contact-form'); const toast = document.getElementById('success-toast'); contactForm.addEventListener('submit', (e) => { e.preventDefault(); // Show success toast toast.classList.add('show'); contactForm.reset(); // Auto hide toast setTimeout(() => { toast.classList.remove('show'); }, 4000); }); // Theme Toggle Logic const themeToggleBtn = document.getElementById('theme-toggle'); const themeIcon = themeToggleBtn.querySelector('i'); // Check for saved theme preference or default to dark const savedTheme = localStorage.getItem('portfolio-theme') || 'dark'; if (savedTheme === 'light') { document.body.classList.add('light-theme'); themeIcon.className = 'fa-solid fa-moon'; } else { document.body.classList.remove('light-theme'); themeIcon.className = 'fa-solid fa-sun'; } themeToggleBtn.addEventListener('click', () => { document.body.classList.toggle('light-theme'); const isLight = document.body.classList.contains('light-theme'); if (isLight) { themeIcon.className = 'fa-solid fa-moon'; localStorage.setItem('portfolio-theme', 'light'); } else { themeIcon.className = 'fa-solid fa-sun'; localStorage.setItem('portfolio-theme', 'dark'); } }); }); </script> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.37 |
proxy
|
phpinfo
|
Settings