springactivity.blade.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. body {
  11. margin: 0 auto;
  12. padding: 0;
  13. height: 100%;
  14. max-width: 450px;
  15. }
  16. .main_box {
  17. height: inherit;
  18. font-size: 0;
  19. position: relative;
  20. }
  21. .main_box img {
  22. height: inherit;
  23. width: 100%;
  24. }
  25. .recharge_box_one a,
  26. .recharge_box_two a {
  27. position: absolute;
  28. width: 60%;
  29. height: 35px;
  30. left: 50%;
  31. transform: translateX(-50%);
  32. }
  33. .recharge_box_one a {
  34. top: 53%;
  35. }
  36. .recharge_box_two a {
  37. bottom: 18%;
  38. }
  39. .d_none {
  40. display: none;
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <main class="main_box">
  46. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/spring_activity_bg.jpg" alt="">
  47. <div class="recharge_box_one">
  48. @if($code == 0)
  49. <!-- 活动进行中 -->
  50. <a href="{{$url['fifty']}}" class="beginning">
  51. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/spring_activity_beginning.png" alt="">
  52. </a>
  53. @elseif($code == 1)
  54. <!-- 活动未开始 -->
  55. <a href="javascript:void(0)" class="un_begin">
  56. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/spring_activity_unbegin.png" alt="">
  57. </a>
  58. @else
  59. <!-- 活动已结束 -->
  60. <a href="javascript:void(0)" class="over">
  61. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/spring_activity_over.png" alt="">
  62. </a>
  63. @endif
  64. </div>
  65. <div class="recharge_box_two">
  66. @if($code == 0)
  67. <!-- 活动进行中 -->
  68. <a href="{{$url['hundred']}}" class="beginning">
  69. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/spring_activity_beginning.png" alt="">
  70. </a>
  71. @elseif($code == 1)
  72. <!-- 活动未开始 -->
  73. <a href="javascript:void(0)" class="un_begin">
  74. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/spring_activity_unbegin.png" alt="">
  75. </a>
  76. @else
  77. <!-- 活动已结束 -->
  78. <a href="javascript:void(0)" class="over">
  79. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/spring_activity_over.png" alt="">
  80. </a>
  81. @endif
  82. </div>
  83. </main>
  84. </body>
  85. </html>