前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >html+css唯美登录页面,代码提供(效果展示)「建议收藏」

html+css唯美登录页面,代码提供(效果展示)「建议收藏」

作者头像
全栈程序员站长
发布2022-08-31 18:29:17
1.3K0
发布2022-08-31 18:29:17
举报

大家好,又见面了,我是你们的朋友全栈君。

效果图

在这里插入图片描述
在这里插入图片描述

所有代码

代码语言:javascript
复制
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>登陆页面</title>
        <!-- author xjt -->
</head>
<body>
    <div class="login">
        <h2>登陆\注册</h2>
        <div class="login_form">
            <span>账号:</span>
            <input type="text" placeholder="请输入账号">
            <br>
            <span>密码:</span>
            <input type="password" placeholder="请输入密码">
        </div>
        <div class="btn">
            <button class="login_btn" onclick="login()">登 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;录</button>
        </div>
    </div>
</body>
<script> function login(){ 
      console.log('登录按钮点击了'); } </script>
<style> body{ 
      padding: 0; margin: 0; height: 100vh; display: flex; justify-content: center; background-image: linear-gradient(#a18cd1 0%, #fbc2eb 100%); background-size: cover; flex: 1; align-items: center; } .login{ 
      text-align: center; margin: 0 auto; width: 600px; height: 520px; background-color: rgba(87, 86, 86, 0.2); border-radius: 25px; box-shadow: 5px 2px 35px -7px #ff9a9e; } .login h2{ 
      margin-top: 40px; color: aliceblue; font-weight: 100; } .login_form{ 
      padding: 20px; } .login_form span{ 
      color: rgb(131, 220, 255); font-size: 18px; font-weight: 100; } .login_form input{ 
      background-color: transparent; width: 320px; padding: 2px; text-indent: 2px; color: white; font-size: 20px; height: 45px; margin: 30px 30px 30px 5px; outline: none; border: 0; border-bottom: 1px solid rgb(131, 220, 255); } input::placeholder{ 
      color: #fbc2eb; font-weight: 100; font-size: 18px; font-style: italic; } .login_btn{ 
      background-color: rgba(255, 255, 255, 0.582); border: 1px solid rgb(190, 225, 255); padding: 10px; width: 240px; height: 60px; border-radius: 30px; font-size: 30px; color: rgb(100, 183, 255); font-weight: 100; margin-top: 15px; } .login_btn:hover{ 
      box-shadow: 2px 2px 15px 2px rgb(190, 225, 255); background-color: transparent; color: white; /* 选择动画 */ animation: login_mation 0.5s; } /* 定义动画 */ @keyframes login_mation { 
      from { 
      background-color: rgba(255, 255, 255, 0.582); box-shadow: 0px 0px 15px 2px rgb(190, 225, 255); } to { 
      background-color: transparent; color: white; box-shadow: 2px 2px 15px 2px rgb(190, 225, 255); } } </style>

</html>

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/142728.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022年5月2,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 效果图
  • 所有代码
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档