welcome.blade.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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>Welcome to Mietubl Album System</title>
  7. <style>
  8. /* 页面基础样式 */
  9. body {
  10. font-family: 'Arial', sans-serif;
  11. margin: 0;
  12. padding: 0;
  13. height: 100vh;
  14. background-color: #f0f0f0;
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. /* 居中显示的容器 */
  20. .container {
  21. text-align: center;
  22. background-color: #ffffff;
  23. padding: 30px;
  24. border-radius: 10px;
  25. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  26. }
  27. /* 欢迎文本样式 */
  28. h1 {
  29. font-size: 36px;
  30. color: #333333;
  31. margin-bottom: 10px;
  32. }
  33. /* 添加动画 */
  34. .container h1 {
  35. animation: fadeIn 1.5s ease-in-out;
  36. }
  37. /* 动画效果 */
  38. @keyframes fadeIn {
  39. 0% {
  40. opacity: 0;
  41. transform: translateY(-20px);
  42. }
  43. 100% {
  44. opacity: 1;
  45. transform: translateY(0);
  46. }
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div class="container">
  52. <h1>Welcome to Mietubl Album System!</h1>
  53. </div>
  54. </body>
  55. </html>