1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!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>
- html {
- background: #4ba0bf;
- }
- html,
- body {
- margin: 0 auto;
- padding: 0;
- max-width: 450px;
- font-size: 100px;
- }
- .main_box {
- font-size: 0;
- position: relative;
- }
- .main_box img {
- width: 100%;
- }
- .recharge_box_one a {
- position: absolute;
- width: 80%;
- height: 0.75rem;
- top: 66%;
- left: 50%;
- transform: translateX(-50%);
- z-index: 999;
- }
- .d_none {
- display: none;
- }
- </style>
- </head>
- <body>
- <main class="main_box">
- <img src="http://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/readday_bg.jpg" alt="">
- <div class="recharge_box_one">
- @if($code == 1)
- <!-- 活动未开始 -->
- <a href="#" class="un_begin">
- <img src="http://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/readday_undone.jpg" alt="">
- </a>
- @elseif($code == 0)
- <!-- 活动进行中 -->
- <a href="{{$url}}" class="beginning">
- <img src="http://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/readday_doing.jpg" alt="">
- </a>
- @elseif($code == 2)
- <!-- 活动结束 -->
- <a href="javascript:void(0)" class="over">
- <img src="http://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/readday_over.jpg" alt="">
- </a>
- @endif
- </div>
- </main>
- </body>
- </html>
|