首页 > 互联资讯 > 建站教程  > 

仿TwitterLogin弹出式登录层jQuery特效实例代码(jQuery仿TwitterLogin弹出式登录层特效实例代码)

仿TwitterLogin弹出式登录层jQuery特效实例代码(jQuery仿TwitterLogin弹出式登录层特效实例代码)
一款jQuery实现的模仿TwitterLogin点击弹出登录层特效。点击页面右端的Sign in弹出登录窗口。

以下是一个仿Twitter登录弹出式登录层的jQuery特效实例代码:

HTML代码:

<!DOCTYPE html><html><head>
  <title>仿Twitter登录弹出式登录层</title>
  <link rel="stylesheet" type="text/css" href="login.css">
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  <script src="login.js"></script></head><body>
  <button id="loginButton">登录</button>
  <div id="loginBox">
    <div id="closeButton">×</div>
    <h2>用户登录</h2>
    <form>
      <label for="username">用户名:</label>
      <input type="text" id="username" name="username">
      <label for="password">密码:</label>
      <input type="password" id="password" name="password">
      <input type="submit" value="登录">
    </form>
  </div></body></html>

CSS代码(login.css):

#loginButton {  padding: 10px;  background-color: #4CAF50;  color: white;  border: none;  cursor: pointer;
}#loginBox {  display: none;  position: fixed;  top: 50%;  left: 50%;  transform: translate(-50%, -50%);  padding: 20px;  background-color: #f1f1f1;  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}#closeButton {  position: absolute;  top: 10px;  right: 10px;  cursor: pointer;
}h2 {  margin-top: 0;
}form {  margin-top: 20px;
}label {  display: block;  margin-bottom: 5px;
}input[type="text"],input[type="password"] {  width: 100%;  padding: 5px;  margin-bottom: 10px;
}input[type="submit"] {  padding: 10px;  background-color: #4CAF50;  color: white;  border: none;  cursor: pointer;
}

JavaScript代码(login.js):

$(document).ready(function() {
  $('#loginButton').click(function() {
    $('#loginBox').fadeIn();
  });

  $('#closeButton').click(function() {
    $('#loginBox').fadeOut();
  });
});

请确保将上述示例代码中的"login.css"和"login.js"文件路径替换为实际文件的路径。这是一个简单的示例,用于展示如何实现一个仿Twitter登录弹出式登录层


jQuery仿TwitterLogin弹出式登录层特效,仿TwitterLogin弹出式登录层jQuery特效,jQuery分类插件特效,多款jQuery分页插件特效,

仿TwitterLogin弹出式登录层jQuery特效实例代码(jQuery仿TwitterLogin弹出式登录层特效实例代码)由讯客互联建站教程栏目发布,感谢您对讯客互联的认可,以及对我们原创作品以及文章的青睐,非常欢迎各位朋友分享到个人网站或者朋友圈,但转载请说明文章出处“仿TwitterLogin弹出式登录层jQuery特效实例代码(jQuery仿TwitterLogin弹出式登录层特效实例代码)