test2.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>欢迎来到设备管理系统</title>
  6. <style type="text/css">
  7. body{
  8. background-color: skyblue;
  9. }
  10. .welcome{
  11. font-size: 28px;
  12. color:#961515;
  13. font-style: italic;
  14. }
  15. .select{
  16. font-size: 28px;
  17. text-align: center;
  18. margin-top: 80px;
  19. color:#A75480;
  20. }
  21. @keyframes move{
  22. 0%{
  23. color:pink;
  24. }
  25. 20%{
  26. color:skyblue;
  27. }
  28. 40%{
  29. color:#C4B3B3;
  30. }
  31. 60%{
  32. color:blue;
  33. }
  34. 80%{
  35. color:green;
  36. }
  37. 90%{
  38. color:gold;
  39. }
  40. }
  41. .select{
  42. animation-name: move;
  43. animation-duration: 15s;
  44. }
  45. .do{
  46. width: 980px;
  47. height: 280px;
  48. /*background-color: #C4B3B3;*/
  49. margin: 70px auto;
  50. }
  51. .do1{
  52. width: 180px;
  53. height: 250px;
  54. margin: 30px;
  55. float: left;
  56. background-color: #C4B3B3;
  57. text-align: center;
  58. line-height: 250px;
  59. }
  60. .do2{
  61. width: 180px;
  62. height: 250px;
  63. margin: 30px;
  64. float: left;
  65. background-color: #C4B3B3;
  66. text-align: center;
  67. line-height: 250px;
  68. }
  69. .do3{
  70. width: 180px;
  71. height: 250px;
  72. margin: 30px;
  73. float: left;
  74. background-color: #C4B3B3;
  75. text-align: center;
  76. line-height: 250px;
  77. }
  78. .do4{
  79. width: 180px;
  80. height: 250px;
  81. margin: 30px;
  82. float: left;
  83. background-color: #C4B3B3;
  84. text-align: center;
  85. line-height: 250px;
  86. }
  87. a{
  88. text-decoration: none;
  89. color:#0A62C0;
  90. font-size: 24px;
  91. }
  92. .do>a:hover{
  93. background-color: pink;
  94. }
  95. </style>
  96. </head>
  97. <body>
  98. <marquee behavior="scroll" direction="right">
  99. <div class="welcome">
  100. 欢迎来到设备管理系统!
  101. </div>
  102. </marquee>
  103. <div class="select">
  104. 请选择操作
  105. </div>
  106. <div class="do">
  107. <a class="do1" href="http://localhost:8080/devicemanagement/input.jsp">添加数据</a>
  108. <a class="do2" href="http://localhost:8080/devicemanagement/dele.jsp">删除数据</a>
  109. <a class="do3" href="http://localhost:8080/devicemanagement/change.jsp">修改数据</a>
  110. <a class="do4" href="http://localhost:8080/devicemanagement/MMC_01">查询数据</a>
  111. </div>
  112. </marquee>
  113. </body>
  114. </html>