saleactivity.blade.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. body,
  10. html {
  11. margin: 0;
  12. padding: 0;
  13. height: 100%;
  14. }
  15. .main_page {
  16. height: inherit;
  17. font-size: 0px;
  18. position: relative;
  19. }
  20. .main_page img,
  21. .intro img {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. .main_page .click_area {
  26. position: absolute;
  27. width: 100%;
  28. height: 55px;
  29. bottom: 8%;
  30. left: 0;
  31. }
  32. .intro {
  33. font-size: 0;
  34. position: relative;
  35. top: -1px;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div class="main_page">
  41. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/activity_one.jpg" alt="">
  42. <a class="click_area" href="{{$url}}">
  43. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/activity_btn.png" alt="">
  44. </a>
  45. </div>
  46. <div class="intro">
  47. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/activity_two.jpg" alt="">
  48. </div>
  49. </body>
  50. <script>
  51. window.onload = function () {
  52. if('{!! $url !!}' === '###'){
  53. alert('您已参加过本次活动 敬请期待下次活动')
  54. }
  55. }
  56. </script>
  57. </html>