controller.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <title>幸福空間 - 咖啡券控制顯示</title>
  7. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
  8. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
  9. crossorigin="anonymous">
  10. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
  11. <link rel="stylesheet" href="./style.css">
  12. <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  13. </head>
  14. <body>
  15. <div class="container text-center">
  16. <h2 class="mt-5">咖啡券控制顯示</h2>
  17. <div class="d-flex justify-content-center" style="margin-top: 10%;">
  18. <button class="btn btn-warning d-inline-block" style="margin-right: 1rem;" onclick="onshow()">顯示咖啡券</button>
  19. <button class="btn btn-warning" onclick="offshow()">不顯示咖啡券</button>
  20. </div>
  21. </div>
  22. <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
  23. <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js'></script>
  24. <script>
  25. function onshow() {
  26. axios.get('http://q.ptt.cx/coffee/set/1').then(res => {
  27. console.log(res.data);
  28. window.alert('已開啟咖啡券顯示!咖啡券將顯示於頁尾');
  29. });
  30. }
  31. function offshow() {
  32. axios.get('http://q.ptt.cx/coffee/set/0').then(res => {
  33. window.alert('關閉咖啡券顯示!');
  34. console.log(res.data);
  35. });
  36. }
  37. </script>
  38. </body>
  39. </html>