vernalEquinoxActivity.blade.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!--
  2. /**
  3. * Created by PhpStorm.
  4. * User: z-yang
  5. * Date: 2019/3/20
  6. * Time: 11:40
  7. */
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  14. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  15. <title>春分至-最是人间好时光</title>
  16. <style>
  17. html {
  18. background: #4ba0bf;
  19. }
  20. html,
  21. body {
  22. margin: 0 auto;
  23. padding: 0;
  24. max-width: 450px;
  25. font-size: 100px;
  26. }
  27. .main_box {
  28. font-size: 0;
  29. position: relative;
  30. }
  31. .main_box img {
  32. width: 100%;
  33. }
  34. .recharge_box_one a {
  35. position: absolute;
  36. width: 80%;
  37. height: 0.75rem;
  38. top: 72%;
  39. left: 50%;
  40. transform: translateX(-50%);
  41. z-index: 999;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <main class="main_box">
  47. <img src="{{$img}}" alt="">
  48. <div class="recharge_box_one">
  49. @if($code == -1)
  50. <!-- 活动未开始 -->
  51. <a href="#" class="un_begin">
  52. <img src="https://cdn-novel.iycdm.com/h5/activity-2019-03-20/undone.png" alt="">
  53. </a>
  54. @elseif($code == 0)
  55. <!-- 活动进行中 -->
  56. <a href="{{$url}}" class="beginning">
  57. <img src="https://cdn-novel.iycdm.com/h5/activity-2019-03-20/doing.png" alt="">
  58. </a>
  59. @elseif($code == -2)
  60. <!-- 活动结束 -->
  61. <a href="javascript:void(0)" class="over">
  62. <img src="https://cdn-novel.iycdm.com/h5/activity-2019-03-20/over.png" alt="">
  63. </a>
  64. @endif
  65. </div>
  66. </main>
  67. </body>
  68. </html>