alexx876

Untitled

Jan 21st, 2022
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link
  5. rel="stylesheet"
  6. href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css"
  7. />
  8. <meta charset="utf-8" />
  9. <style>
  10. .qr-code {
  11. max-width: 200px;
  12. margin: 10px;
  13. }
  14. </style>
  15. <title>Генерация QR i-Store</title>
  16. </head>
  17.  
  18. <body>
  19. <div class="container-fluid">
  20. <div class="text-center">
  21. <img
  22. src="https://chart.googleapis.com/chart?cht=qr&chl=Hello+World&chs=160x160&chld=L|0"
  23. class="qr-code img-thumbnail img-responsive"
  24. />
  25. </div>
  26.  
  27. <div class="form-horizontal">
  28. <div class="form-group">
  29. <label class="control-label col-sm-2" for="content">
  30. Артикул
  31. </label>
  32. <div class="col-sm-10">
  33. <input
  34. type="text"
  35. size="60"
  36. maxlength="60"
  37. class="form-control"
  38. id="content"
  39. placeholder="MWP22RU/A"
  40. />
  41.  
  42. <input
  43. type="text"
  44. size="60"
  45. maxlength="60"
  46. class="form-control"
  47. id="content2"
  48. placeholder="SP2R21T79F5"
  49. />
  50. </div>
  51. </div>
  52. <div class="form-group">
  53. <div class="col-sm-offset-2 col-sm-10">
  54. <button type="button" class="btn btn-default" id="generate">
  55. Печать
  56. </button>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61.  
  62. <script src="https://code.jquery.com/jquery-3.5.1.js"></script>
  63.  
  64. <script>
  65. function htmlEncode(value) {
  66. return $("<div/>").text(value).html();
  67. }
  68.  
  69. $(function () {
  70. $("#generate").click(function () {
  71. let finalURL =
  72. "https://chart.googleapis.com/chart?cht=qr&chl=" +
  73. htmlEncode($("#content").val() + " " + $("#content2").val()) +
  74. "&chs=160x160&chld=L|0";
  75.  
  76. $(".qr-code").attr("src", finalURL);
  77. });
  78. });
  79. </script>
  80. </body>
  81. </html>
  82.  
Advertisement
Add Comment
Please, Sign In to add comment