css+jquery实现大气滑块登录注册表单效果代码

代码语言:html

所属分类:表单美化

代码描述:css+jquery实现大气滑块登录注册表单效果代码

代码标签: css jquery 大气 滑块 登录 注册 表单

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">

<head>
   
<meta charset="UTF-8">

   
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
   
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/all.5.6.1.css">
   
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/reset.min.css">
   
<style>
        body {
      font-family: "Roboto", sans-serif;
    }
   
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }
   
    .background {
      height: 100vh;
      width: 100%;
      background-image: url("//repo.bfw.wiki/bfwrepo/image/636d9d021f5a3.png");
      background-size: cover;
      background-position: center;
      filter: blur(2px);
    }
   
    .container {
      width: 80%;
      height: 60vh;
      background-color: #32393e;
      color: #fefefe;
      display: flex;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }
   
    .signup,
    .login {
      width: 50%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 80px 40px 40px 40px;
      transition: all 0.3s;
    }.........完整代码请登录后点击上方下载按钮下载查看

网友评论0