[JavaScript] jquery登录框特效5 →→→→→进入此内容的聊天室

来自 , 2021-01-12, 写在 JavaScript, 查看 164 次.
URL http://www.code666.cn/view/f033ab37
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>jquery登录框特效5</title>
  6. <link rel="shortcut icon" href="../favicon.ico">
  7. <link rel="stylesheet" type="text/css" href="css/style.css" />
  8. <!--[if lte IE 7]><style>.main{display:none;} .support-note .note-ie{display:block;}</style>
  9. <![endif]-->
  10. <style>
  11. body {
  12.         background: #eedfcc url(images/bg3.jpg) no-repeat center top;
  13.         -webkit-background-size: cover;
  14.         -moz-background-size: cover;
  15.         background-size: cover;
  16. }
  17. .container > header h1, .container > header h2 {
  18.         color: #fff;
  19.         text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div class="container">
  25.   <section class="main">
  26.     <form class="form-5 clearfix">
  27.       <p>
  28.         <input type="text" id="login" name="login" placeholder="Username">
  29.         <input type="password" name="password" id="password" placeholder="Password">
  30.       </p>
  31.       <button type="submit" name="submit"> <i class="icon-arrow-right"></i> <span>Sign in</span> </button>
  32.     </form>
  33.   </section>
  34. </div>
  35. <!-- jQuery if needed -->
  36. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
  37. <script type="text/javascript" src="js/jquery.placeholder.min.js"></script>
  38. <script type="text/javascript">
  39. $(function(){
  40. $('input, textarea').placeholder();
  41. });
  42. </script>
  43. </body>
  44. </html>

回复 "jquery登录框特效5"

这儿你可以回复上面这条便签

captcha