laborDay.blade.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>五一劳动节</title>
  8. <style>
  9. html {
  10. background: #4ba0bf;
  11. }
  12. html,
  13. body {
  14. margin: 0 auto;
  15. padding: 0;
  16. max-width: 450px;
  17. font-size: 100px;
  18. }
  19. .main_box {
  20. font-size: 0;
  21. position: relative;
  22. }
  23. .main_box img {
  24. width: 100%;
  25. }
  26. .recharge_box_one a {
  27. position: absolute;
  28. width: 80%;
  29. height: 0.75rem;
  30. top: 66%;
  31. left: 50%;
  32. transform: translateX(-50%);
  33. z-index: 999;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <main class="main_box">
  39. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/51bg.jpg" alt="">
  40. <div class="recharge_box_one">
  41. @if($code == 1)
  42. <!-- 活动未开始 -->
  43. <a href="#" class="un_begin">
  44. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/51undone.png" alt="">
  45. </a>
  46. @elseif($code == 0)
  47. <!-- 活动进行中 -->
  48. <a href="{{$url}}" class="beginning">
  49. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/51doing.png" alt="">
  50. </a>
  51. @elseif($code == 2)
  52. <!-- 活动结束 -->
  53. <a href="javascript:void(0)" class="over">
  54. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/51over.png" alt="">
  55. </a>
  56. @endif
  57. </div>
  58. </main>
  59. </body>
  60. </html>