2024.4.26(结组第6天)
代码:218行
博客园:1篇
今天正式开始工作,最后我的任务被分配到了整个网站的代码,他们俩各负责一个游戏的制作,我在晚上找了几张好看的科技图片准备作为背景,然后开始着手敲写。下面是我用到的css代码,后面会不断进行更新,最终会呈现整个项目的css代码放到这里。
*{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins',sans-serif; } body{ display: flex; justify-content: center; align-items: center; min-height: 100vh; background: url('img.png') no-repeat; /*background-color: rgba(255,255,255,0.5);*/ background-size: cover; background-position: center; overflow: hidden; } header{ position: fixed; top: 0; left: 0; width: 100%; padding: 20px 100px; display: flex; justify-content: space-between; align-items: center; z-index: 99; overflow: hidden; } .logo{ font-size: 2em; color: #fff; user-select: none; } .navigation a{ position: relative; font-size: 1.1em; color: white; text-decoration: none; font-weight: 500; margin-left: 40px; } .navigation a::after{ content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 3px; background: #fff; border-radius: 5px; transform-origin: right; transform: scaleX(0); transition: transform .5s; } .navigation a:hover::after{ transform-origin: left; transform: scaleX(1); } .navigation .btnLogin-popup{ width: 130px; height: 50px; background: transparent; border: 2px solid #fff; outline: none; border-radius: 6px; cursor: pointer; font-size: 1.1em; color: #fff; font-weight: 500; margin-left: 40px; transition: .5s; } .navigation .btnLogin-popup:hover{ background: #fff; color: #162938; } .wrapper{ position: relative; width: 400px; height: 440px; background: transparent; border: 2px solid rgba(255,255,255,.5); border-radius: 20px; backdrop-filter: blur(20px); box-shadow: 0 0 30px rgba(0,0,0,.5); display: none; justify-content: center; align-items: center; overflow: hidden; transform: scale(0); transition: transform .5s ease, height .2s ease; } .wrapper.active-popup{ transform: scale(1); } .wrapper.active{ height: 600px; } .wrapper .form-box{ width: 100%; padding: 40px; } .wrapper .form-box.login{ transition: transform .18s ease; transform: translateX(0); } .wrapper.active .form-box.login{ transition: none; transform: translateX(-400px); } .wrapper .form-box.register{ position: absolute; transition: none; transform: translateX(400px); } .wrapper.active .form-box.register{ transition: transform .18s ease; transform: translateX(0); } .wrapper .icon-close{ position: absolute; top: 0; right: 0; width: 45px; height: 45px; background: #162938; font-size: 2em; color: #fff; display: flex; justify-content: center; align-items: center; border-bottom-left-radius: 20px; cursor: pointer; z-index: 1; } .form-box h2{ font-size: 2em; color: #162938; text-align: center; } .input-box{ position: relative; width: 100%; height: 50px; border-bottom: 2px solid #162938; margin: 30px 0; } .input-box label{ position: absolute; top: 50%; left: 5px; transform: translateY(-50%); font-size: 1em; color: #162938; font-weight: 500; pointer-events: none; } .input-box input:focus~label, .input-box input:valid~label{ top:-5px; } .input-box input{ width: 100%; height: 100%; background: transparent; border: none; outline: none; font-size: 1em; color: #162938; font-weight: 600; padding: 0 35px 0 5px; } .input-box .icon{ position: absolute; right: 8px; font-size: 1.2em; color: #162938; line-height: 57px; } .remember-forgot{ font-size: .9em; color: #162938; font-weight: 500; margin: -15px 0 15px; display: flex; justify-content: space-between; } .remember-forgot label input{ accent-color: #162938; margin-right: 3px; } .remember-forgot a{ color: #162938; text-decoration: none; } .remember-forgot a:hover{ text-decoration: underline; } .btn{ width: 100%; height: 45px; background: #162938; border: none; outline: none; border-radius: 6px; cursor: pointer; font-size: 1em; color: #fff; font-weight: 500; } .login-register{ font-size: .9em; color: #162938; text-align: center; font-weight: 500; margin: 25px 0 10px; } .login-register p a{ color: #162938; text-decoration: none; font-weight: 600; } .login-register p a:hover{ text-decoration: underline; } .wrapp{ position: relative; width: 1400px; height: 600px; background: transparent; border: 2px solid rgba(255,255,255,.5); border-radius: 20px; backdrop-filter: blur(20px); box-shadow: 0 0 30px rgba(0,0,0,.5); display: block; justify-content: center; align-items: center; overflow: hidden; } .wrapp .page{ position: relative; text-align: center; display: block; width: 1400px; height: 600px; } .wrapp .page.active{ display:block; } .page input{ border-radius: 4px; /* 添加圆角边框 */ background-color: #f6e3e3; /* 自定义背景色 */ color: #000000; /* 自定义文字颜色 */ box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15); /* 添加阴影效果 */ width: 190px; padding: 7px; } .page button { text-align: center; padding: 10px; margin: 0 auto; width: 200px; margin-top: 40px; } .page .container{ position: relative; width: 1400px; height: 600px; display: flex; justify-content: center; align-items: center; } .container .card{ position: absolute; width: 200px; height: 300px; background-color: #07f1f1; border-radius: 8px; display: flex; justify-content: center; align-items: center; color: rgba(0,0,0,0); font-size: 8em; font-weight: 700; border: 10px solid rgba(0,0,0,.1); transition: .5s; transform-origin: 50% 100%; filter: hue-rotate(calc(var(--i) * 30deg)); box-shadow: 0 15px 50px rgba(0,0,0,.1); } .container:hover .card:not(:active){ transform: rotate(calc(var(--i)*5deg)) translate(calc(var(--i)*120px),-100px); box-shadow: 0 15px 50px rgba(0,0,0,.25); color: rgba(0,0,0,.25); cursor: pointer; } .container:active .card:not(:active){ background-color: #333; } .container:hover .card:hover,.card:active{ transform: rotate(calc(var(--i)*5deg)) translate(calc(var(--i)*120px),-100px); filter: hue-rotate(calc(var(--i) * 30deg)); translate: calc(var(--i)*20px) -50px; z-index: 999; } .overlay{ position: fixed; top:0; left:0; width:100%; height:100%; background-color: rgba(0,0,0,0.5); display: none; } .popup{ position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 20px; background-color: #fff; border: 1px solid #ccc; border-radius: 5px; display: none; /* 默认隐藏 */ } .popup label { width: 50px; margin-bottom: 10px; } .popup input[type="text"], select { padding: 8px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; color: #555; } .popup select option { color: #555; } .popup button { padding: 5px 5px; border-radius: 3px; border: none; background-color: #007bff; color: #fff; cursor: pointer; } .popup button:hover { background-color: #0069d9; }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· winform 绘制太阳,地球,月球 运作规律
· 上周热点回顾(3.3-3.9)