博客列表 >模态框练习

模态框练习

没耐心的渔翁
没耐心的渔翁原创
2022年04月13日 14:37:15582浏览

模态框练习

代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>弹窗</title>
  7. </head>
  8. <style>
  9. * {
  10. margin: 0px;
  11. padding: 0px;
  12. }
  13. .div1 {
  14. width: 100%;
  15. height: 50px;
  16. background: blue;
  17. color: white;
  18. padding: 8px 16px;
  19. }
  20. .div1 h1 {
  21. padding-top: 15px;
  22. font-size: 16px;
  23. ;
  24. }
  25. .div1 button {
  26. position: fixed;
  27. right: 0;
  28. }
  29. /* .div2{
  30. display: none;
  31. } */
  32. .div2 input {
  33. width: 220px;
  34. height: 27px;
  35. border: 1px solid blue;
  36. border-radius: 5px;
  37. margin-left: 45px;
  38. }
  39. .btu {
  40. width: 220px;
  41. height: 26px;
  42. /* 去掉边框 */
  43. border: none;
  44. /* 设置圆角 */
  45. border-radius: 5px;
  46. background: seagreen;
  47. color: white;
  48. /* 外边距向左侧移动 */
  49. margin-left: 45px;
  50. }
  51. /* 模态框 */
  52. .div2 fieldset {
  53. border-radius: 5px;
  54. border: none;
  55. width: 300px;
  56. height: 250px;
  57. background: rgb(255, 255, 255);
  58. /* 固定定位 */
  59. position: fixed;
  60. top: 200px;
  61. left: 600px;
  62. }
  63. /* <!-- 半透明框 --> */
  64. .div3 {
  65. /* 固定定位 */
  66. position: fixed;
  67. /* 定位四个角 全部清零 */
  68. top: 0;
  69. left: 0;
  70. right: 0;
  71. bottom: 0;
  72. background-color: rgb(0, 0, 0, 0.5);
  73. }
  74. .div2 p {
  75. font-weight: 700px;
  76. color: #1c2438;
  77. text-align: center;
  78. }
  79. </style>
  80. <!-- 去掉滚动条 -->
  81. <body style="overflow:-Scroll;overflow-x:hidden">
  82. <div class="div1">
  83. <h1>学生管理系统</h1>
  84. <button >登录</button>
  85. </div>
  86. <!-- 模态框 -->
  87. <div class="div2">
  88. <!-- 半透明框 -->
  89. <div class="div3"></div>
  90. <form ction="">
  91. <fieldset>
  92. <div style="line-height: 65px;">
  93. <p>欢迎登录学生管理系统</p>
  94. <hr />
  95. <input type="tetx" name="username" placeholder="用户名" />
  96. </div>
  97. <div>
  98. <input type="password" name="password" placeholder="密码">
  99. </div>
  100. <div style="line-height:65px;">
  101. <button class="btu">登录</button>
  102. </div>
  103. </fieldset>
  104. </form>
  105. </div>
  106. </body>
  107. </html>

模态框

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议