qrcode.blade.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <link rel=icon type=image/png href="data:image/png;base64,iVBORw0KGgo=">
  8. <title>扫码进入追书云</title>
  9. <style>
  10. html,
  11. body {
  12. margin: 0 auto;
  13. padding: 0;
  14. height: 100%;
  15. max-width: 450px;
  16. }
  17. .main_box {
  18. height: inherit;
  19. font-size: 0;
  20. position: relative;
  21. }
  22. .main_box img {
  23. height: inherit;
  24. width: 100%;
  25. }
  26. .main_box .qrcode{
  27. width:80%;
  28. position:absolute;
  29. left:10%;
  30. top:10%;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <main class="main_box">
  36. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/distribution/xcx/img/bg.jpg" alt="">
  37. <div class="qrcode">
  38. <img src="{!! $qrcode !!}">
  39. </div>
  40. </main>
  41. </body>
  42. </html>