readDay.blade.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. .d_none {
  36. display: none;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <main class="main_box">
  42. <img src="http://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/readday_bg.jpg" alt="">
  43. <div class="recharge_box_one">
  44. @if($code == 1)
  45. <!-- 活动未开始 -->
  46. <a href="#" class="un_begin">
  47. <img src="http://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/readday_undone.jpg" alt="">
  48. </a>
  49. @elseif($code == 0)
  50. <!-- 活动进行中 -->
  51. <a href="{{$url}}" class="beginning">
  52. <img src="http://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/readday_doing.jpg" alt="">
  53. </a>
  54. @elseif($code == 2)
  55. <!-- 活动结束 -->
  56. <a href="javascript:void(0)" class="over">
  57. <img src="http://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/readday_over.jpg" alt="">
  58. </a>
  59. @endif
  60. </div>
  61. </main>
  62. </body>
  63. </html>