HTML5+CSS3小实例:不偷看密码的超萌猫头鹰登录界面

实例:不偷看密码的超萌猫头鹰登录界面
技术栈:HTML+CSS+JQuery
JQuery下载地址:https://www.jb51.net/zt/jquerydown.htm
效果:


源码:
【html】

<!DOCTYPE html>
<html>
 
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
 
    <title>不偷看密码的超萌猫头鹰</title>
    <link rel="stylesheet" href="../css/50.css">
    <script src="../js/jquery-3.6.0.min.js"></script>
    <script>
        $(function() {
            $('#password').focus(function() {
                // 密码框获得焦点,追加样式.password
                $('#owl').addClass('password');
            }).blur(function() {
                // 密码框失去焦点,移除样式.password
                $('#owl').removeClass('password');
            });
        });
    </script>
</head>
 
<body>
    <div class="login-box">
        <div id="owl" class="owl">
            <div class="hand"></div>
            <div class="hand hand-r"></div>
            <div class="arms">
                <div class="arm"></div>
                <div class="arm arm-r"></div>
            </div>
        </div>
        <div class="input-box">
            <input type="text" placeholder="账号">
            <input id="password" type="password" placeholder="密码">
            <button>登录</button>
        </div>
    </div>
</body>
 
</html>

【css】

* {
  /* 初始化 */
  margin: 0;
  padding: 0;
}
 
body {
  /* 100%窗口高度 */
  height: 100vh;
  /* 弹性布局 居中 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 渐变背景 */
  background: linear-gradient(200deg, #72afd3, #96fbc4);
}
 
.login-box {
  /* 相对定位 */
  position: relative;
  width: 320px;
}
 
.input-box {
  /* 弹性布局 垂直排列 */
  display: flex;
  flex-direction: column;
}
 
.input-box input {
  height: 40px;
  border-radius: 3px;
  /* 缩进15像素 */
  text-indent: 15px;
  outline: none;
  border: none;
  margin-bottom: 15px;
}
 
.input-box input:focus {
  outline: 1px solid lightseagreen;
}
 
.input-box button {
  border: none;
  height: 45px;
  background-color: lightseagreen;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
}
 
/* 猫头鹰样式 */
.owl {
  width: 211px;
  height: 108px;
  background-image: url("../images/owl-login.png");
  /* 绝对定位 */
  position: absolute;
  top: -100px;
  /* 水平居中 */
  left: 50%;
  transform: translateX(-50%);
}
 
.owl .hand {
  width: 34px;
  height: 34px;
  border-radius: 40px;
  background-color: #472d20;
  /* 缩放0.6倍 */
  transform: scaleY(0.6);
  /* 动画过渡 */
  transition: 0.3s ease-out;
  position: absolute;
  left: 12px;
  bottom: -8px;
}
 
.owl .hand.hand-r {
  left: 170px;
}
 
.owl.password .hand {
  transform: translateX(42px) translateY(-15px) scale(0.7);
}
 
.owl.password .hand.hand-r {
  transform: translateX(-42px) translateY(-15px) scale(0.7);
}
 
.owl .arms {
  top: 58px;
  position: absolute;
  width: 100%;
  height: 41px;
  overflow: hidden;
}
 
.owl .arms .arm {
  width: 40px;
  height: 65px;
  position: absolute;
  left: 20px;
  top: 40px;
  background-image: url("../images/owl-login-arm.png");
  transform: rotate(-20deg);
  transition: 0.3s ease-out;
}
 
.owl .arms .arm.arm-r {
  transform: rotate(20deg) scaleX(-1);
  left: 158px;
}
 
.owl.password .arms .arm {
  transform: translateY(-40px) translateX(40px);
}
 
.owl.password .arms .arm.arm-r {
  transform: translateY(-40px) translateX(-40px) scaleX(-1);
}

【图片素材】
https://www.aliyundrive.com/s/HDwxVHGbYiw
https://www.aliyundrive.com/s/z2AiixjVT8N

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • parse_str() 函数[https://www.runoob.com/php/func-string-par...
    _fhs阅读 112评论 0 0
  • 返回上一页: 点击回到顶部 解决办法: a标签跳转锚点到页面指定位置 https://blog.csdn.net/...
    zlf_j阅读 1,598评论 0 1
  • A-iOS开发常用网址(最全) 资源互链!!!资源的精华都在这里了 iOS开发推荐DMG资源http://blog...
    YY110阅读 1,121评论 0 2
  • 一套实用的渗透测试岗位面试题,你会吗? 1.拿到一个待检测的站,你觉得应该先做什么? 收集信息 whois、网站源...
    g0阅读 5,159评论 0 9
  • 1、局部变量->全局变量def func():a=1print(a)global bb=2print(b) fun...
    无量儿阅读 1,034评论 0 0

友情链接更多精彩内容