HTML+CSS实现奇特的的企业官网效果

简介: HTML+CSS实现奇特的的企业官网效果

效果




完整代码

HTML部分

<div class="container">
        <header class="header">
            <div class="logo">某某某公司</div>
            <nav class="nav-menu">
                <a href="#" class="nav-item">项目资料</a>
                <a href="#" class="nav-item">商业资讯</a>
                <a href="#" class="nav-item">专家顾问</a>
                <a href="#" class="nav-item">服务介绍</a>
                <a href="#" class="nav-item">联系我们</a>
            </nav>
           
        </header>
        
        <div class="main-content">
            <section class="hero">
                <div class="hero-content">
                    <h1>您专属的融资中心</h1>
                    <p>一站式融资解决方案,精准政府、银行、资本市场三大资源渠道</p>
                    <div class="cta-buttons">
                        <a href="#" class="cta-button">产品服务手册</a>
                        <a href="#" class="cta-button">免费咨询</a>
                    </div>
                </div>
            </section>
            <section class="login-section">
                <form class="login-form">
                    <input type="text" placeholder="手机号/用户名">
                    <input type="password" placeholder="密码">
                    <button class="login-button">登 录</button>
                </form>
                <div class="social-login">
                    <a href="#">社交账号登录</a>
                    <a href="#">忘记密码?</a>
                </div>
            </section>
        </div>
        
        <div class="stats">
            <div class="stat-item">
                <div class="stat-number">2,903亿</div>
                <div class="stat-label">融资金额</div>
            </div>
            <div class="stat-item">
                <div class="stat-number">230+</div>
                <div class="stat-label">合作企业</div>
            </div>
            <div class="stat-item">
                <div class="stat-number">1,000+</div>
                <div class="stat-label">成功项目</div>
            </div>
        </div>
        
        <div class="icons">
            <div class="icon-item">
                <div class="icon-circle">
                    <img src="./img/0901.png" alt="扶持补贴">
                </div>
                <div class="icon-label">扶持补贴</div>
            </div>
            <div class="icon-item">
                <div class="icon-circle">
                    <img src="./img/0901.png" alt="专项资金">
                </div>
                <div class="icon-label">专项资金</div>
            </div>
            <div class="icon-item">
                <div class="icon-circle">
                    <img src="./img/0901.png" alt="政府资金">
                </div>
                <div class="icon-label">政府资金</div>
            </div>
        </div>
    </div>

CSS部分


@keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideIn {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        body, html {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            height: 100%;
        }
        .container {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .header {
            background-color: white;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e0e0e0;
            animation: fadeIn 0.5s ease-out;
        }
        .logo {
            color: #ff6600;
            font-size: 24px;
            font-weight: bold;
        }
        .nav-menu {
            display: flex;
        }
        .nav-item {
            margin-left: 20px;
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .nav-item:hover {
            color: #ff6600;
        }
        .user-actions {
            display: flex;
            align-items: center;
        }
        .user-actions a {
            margin-left: 20px;
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .user-actions a:hover {
            color: #ff6600;
        }
        .main-content {
            flex: 1;
            display: flex;
            background-image: url('./img/012.jpg');
            background-size: cover;
            background-position: center;
        }
        .hero {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 50px;
            color: white;
        }
        .hero-content {
            animation: slideIn 0.8s ease-out;
        }
        .hero-content h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        .hero-content p {
            font-size: 18px;
            margin-bottom: 20px;
            max-width: 600px;
        }
        .cta-buttons {
            display: flex;
            margin-bottom: 40px;
        }
        .cta-button {
            background-color: #ff6600;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 4px;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }
        .cta-button:hover {
            background-color: #e55b00;
        }
        .login-section {
            width: 300px;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            align-self: center;
            margin-right: 50px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            animation: fadeIn 1s ease-out 0.5s both;
        }
        .login-form input {
            display: block;
            margin-bottom: 15px;
            padding: 10px;
            width: 100%;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .login-button {
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 12px;
            width: 100%;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }
        .login-button:hover {
            background-color: #e55b00;
        }
        .social-login {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }
        .social-login a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        .social-login a:hover {
            color: #ff6600;
        }
        .stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            width: 1200px;
            margin: 0 auto;
            margin-top:-20px;
            background-color: #fff;
            padding: 25px 20px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 24px;
            font-weight: bold;
            color: #ff6600;
        }
        .stat-label {
            font-size: 14px;
            color: #666;
        }
        .icons {
            display: flex;margin-top: 60px;;
            justify-content: space-around;
            text-align: center;
            
            padding-bottom: 40px;
        }
        .icon-item {
            width: 100px;
        }
        .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
        }
        .icon-circle img {
            width: 40px;
            height: 40px;
        }
        .icon-label {
            font-size: 14px;
            color: #333;
        }
         /* 新增的关键帧动画 */
    @keyframes fadeInIcon {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    /* 修改 .icon-item 的样式 */
    .icon-item {
        width: 100px;
        animation: fadeInIcon 0.5s ease-in-out;
    }
    /* 为每个 .icon-item 设置不同的延迟时间 */
    .icon-item:nth-child(1) {
        animation-delay: 0.1s;
    }
    .icon-item:nth-child(2) {
        animation-delay: 0.3s;
    }
    .icon-item:nth-child(3) {
        animation-delay: 0.5s;
    }
相关文章
|
4天前
|
移动开发 前端开发 JavaScript
[HTML、CSS]细节与使用经验
本文总结了前端开发中的一些重要细节和技巧,包括CSS选择器、定位、层级、全局属性、滚轮控制、轮播等。作者以纯文字形式记录,便于读者使用<kbd>Ctrl + F</kbd>快速查找相关内容。文章还提供了示例代码,帮助读者更好地理解和应用这些知识点。
22 1
[HTML、CSS]细节与使用经验
|
5天前
|
移动开发 前端开发 JavaScript
[HTML、CSS]知识点
本文涵盖前端知识点扩展、HTML标签(如video、input、canvas)、datalist和details标签的使用方法,以及CSS布局技巧(如margin、overflow: hidden和动态height)。文章旨在分享作者的学习经验和实用技巧。
17 1
[HTML、CSS]知识点
|
1月前
|
前端开发 JavaScript 搜索推荐
打造个人博客网站:从零开始的HTML和CSS之旅
【9月更文挑战第32天】在这个数字化的时代,拥有一个个人博客不仅是展示自我的平台,也是技术交流的桥梁。本文将引导初学者理解并实现一个简单的个人博客网站的搭建,涵盖HTML的基础结构、CSS样式的美化技巧以及如何将两者结合来制作一个完整的网页。通过这篇文章,你将学会如何从零开始构建自己的网络空间,并在互联网世界留下你的足迹。
|
1天前
|
前端开发 JavaScript 安全
HTML+CSS+JS密码灯登录表单
通过结合使用HTML、CSS和JavaScript,我们创建了一个带有密码强度指示器的登录表单。这不仅提高了用户体验,还帮助用户创建更安全的密码。希望本文的详细介绍和代码示例能帮助您在实际项目中实现类似功能,提升网站的安全性和用户友好性。
8 3
|
12天前
|
JSON 移动开发 数据格式
html5+css3+js移动端带歌词音乐播放器代码
音乐播放器特效是一款html5+css3+js制作的手机移动端音乐播放器代码,带歌词显示。包括支持单曲循环,歌词显示,歌曲搜索,音量控制,列表循环等功能。利用json获取音乐歌单和歌词,基于html5 audio属性手机音乐播放器代码。
62 6
|
11天前
|
前端开发
HTML 样式- CSS3
内部样式表适用于单个文件的特别样式,通过&lt;head&gt;部分的&lt;style&gt;标签定义;外部样式表适用于多个页面,通过&lt;link&gt;标签引用外部CSS文件;&lt;style&gt;定义样式,&lt;link&gt;引用资源;已弃用的标签有&lt;font&gt;、&lt;center&gt;、&lt;strike&gt;,属性有color和bgcolor。
|
11天前
HTML 样式- CSS2
HTML样式实例展示了如何使用`font-family`、`color`和`font-size`属性来定义字体样式,以及使用`text-align`属性来设置文本的对齐方式。示例包括标题和段落的样式设置。
|
11天前
|
前端开发
HTML 样式- CSS1
CSS (层叠样式表) 用于为 HTML 元素添加样式,包括颜色、文本、盒子模型等。CSS 可以通过内联样式、内部样式表或外部引用的方式添加到 HTML 中。推荐使用外部引用方式。本教程将介绍如何使用 CSS 为 HTML 添加样式,并提供实例演示。
|
1月前
|
前端开发 JavaScript 搜索推荐
打造个人博客网站:从零开始的HTML与CSS之旅
【9月更文挑战第31天】在这个数字时代,拥有一个个人博客网站是展示自我、分享知识和连接世界的重要方式。本文将引导你通过简单的HTML和CSS知识,一步步构建起你的在线空间。无论你是编程新手还是希望通过实践加深理解,这篇文章都将是你的理想指南。我们将探索基本概念,实现页面布局,并点缀以个性化样式,最终将静态页面转变为动态交互式网站。准备好了吗?让我们开始吧!

热门文章

最新文章