12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>新年礼包</title>
- <style>
- body,
- html {
- margin: 0;
- padding: 0;
- height: 100%;
- }
- .main_page {
- height: inherit;
- font-size: 0px;
- position: relative;
- }
- .main_page img,
- .intro img {
- width: 100%;
- height: 100%;
- }
- .main_page .click_area {
- position: absolute;
- width: 100%;
- height: 55px;
- bottom: 8%;
- left: 0;
- }
- .intro {
- font-size: 0;
- position: relative;
- top: -1px;
- }
- </style>
- </head>
- <body>
- <div class="main_page">
- <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/activity_one.jpg" alt="">
- <a class="click_area" href="{{$url}}">
- <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/activity_btn.png" alt="">
- </a>
- </div>
- <div class="intro">
- <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/activity_two.jpg" alt="">
- </div>
- </body>
- <script>
- window.onload = function () {
- if('{!! $url !!}' === '###'){
- alert('您已参加过本次活动 敬请期待下次活动')
- }
- }
- </script>
- </html>
|