bootstrap自适应大气高科技ai公司官网首页代码
代码语言:html
所属分类:布局界面
代码描述:bootstrap自适应大气高科技ai公司官网首页代码,包含关于我们、核心产品、我们的优势、团队风采、联系我们等板块,点击可滚动到相应板块栏目。
代码标签: bootstrap 自适应 大气 高科技 ai 公司 官网 首页 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>AI科技公司 - 智能工具平台</title> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bootstrap.5.3.0.css"> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bootstrap-icons.1.11.3.css"> <style> :root { --primary-color: #1890ff; --secondary-color: #6c63ff; --text-dark: #1a1a1a; --text-light: #5c5c5c; --bg-light: #f5f7fa; --bg-white: #ffffff; --card-shadow: 0 8px 24px rgba(24, 144, 255, 0.15); --btn-hover-bg: #096dd9; --footer-bg: #1c2526; } html { scroll-behavior: smooth; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif; color: var(--text-dark); background-color: var(--bg-white); line-height: 1.6; overflow-x: hidden; } section[id] { scroll-margin-top: 80px; } /* Navigation */ .navbar { background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent); position: fixed; width: 100%; z-index: 1000; padding: 15px 0; transition: background 0.3s ease; } .navbar.scrolled { background: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); } .navbar-brand { font-weight: 700; color: white; font-size: 1.8rem; transition: color 0.3s ease; } .navbar.scrolled .navbar-brand { color: var(--primary-color); } .nav-link { color: white; font-weight: 500; padding: 8px 12px; transition: color 0.3s ease; position: relative; } .navbar.scrolled .nav-link { color: var(--text-dark); } .nav-link:hover, .nav-link.active { color: var(--primary-color); } .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--primary-color); transition: width 0.3s ease; transform: translateX(-50%); } .nav-link:hover::after, .nav-link.active::after { width: 50%; } .btn-login { background: var(--primary-color); color: white; border-radius: 25px; padding: 8px 20px; font-weight: 500; transition: background 0.3s ease; } .btn-login:hover { background: var(--btn-hover-bg); } /* Hero Section */ .hero-section { position: relative; height: 100vh; min-height: 600px; background: linear-gradient(135deg, #0a1128 0%, #1a2a6c 50%, #0a1128 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; } .neural-network-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .hero-content { position: relative; z-index: 10; text-align: center; max-width: 700px; padding: 20px; color: white; } .glitch-text { font-size: 3rem; font-weight: 800; margin-bottom: 1.5rem; text-shadow: 0 0 10px rgba(24, 144, 255, 0.5); animation: glow 3s ease-in-out infinite; } .glitch-text::before, .glitch-text::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.8; } .glitch-text::before { color: #0ff; z-index: -1; animation: glitch-animation 3s infinite; } .glitch-text::after { color: #f0f; z-index: -2; animation: glitch-animation 2s infinite; } @keyframes glitch-animation { 0% { transform: translate(0); } 20% { transform: translate(-2px, 2px); } 40% { transform: translate(-2px, -2px); } 60% { transform: translate(2px, 2px); } 80% { transform: translate(2px, -2px); } 100% { transform: translate(0); } } @keyframes glow { 0%, 100% { text-shadow: 0 0 10px rgba(24, 144, 255, 0.5); } 50% { text-shadow: 0 0 20px rgba(24, 144, 255, 0.8); } } .typing-text { font-size: 1.1rem; margin-bottom: 2rem; white-space: nowrap; overflow: hidden; animation: typing 3s steps(50) 1s forwards; opacity: 0; } @keyframes typing { from { width: 0; opacity: 1; } to { width: 100%; opacity: 1; } } .btn-primary-custom { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: white; padding: 12px 30px; border-radius: 30px; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3); } .btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(24, 144, 255, 0.5); } .btn-outline-custom { border: 2px solid white; color: white; padding: 12px 30px; border-radius: 30px; font-weight: 600; transition: all 0.3s ease; } .btn-outline-custom:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); } /* Common Section Styles */ .section-padding { padding: 80px 0; } .section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 40px; text-align: center; color: var(--text-dark); } /* About Section */ .about-section { background: var(--bg-white); } .about-content { padding: 20px; } .about-tagline { font-size: 1.2rem; font-weight: 600; color: var(--primary-color); margin-bottom: 20px; } .about-text { font-size: 1rem; color: var(--text-light); margin-bottom: 15px; } .about-stats { display: flex; gap: 30px; margin: 20px 0; } .stat-item { text-align: center; } .stat-number { font-size: 2rem; font-weight: 700; color: var(--text-dark); } .stat-number span { color: var(--primary-color); } .stat-label { font-size: 0.9rem; color: var(--text-light); } .about-image img { border-radius: 12px; box-shadow: var(--card-shadow); .........完整代码请登录后点击上方下载按钮下载查看
网友评论0