alexx876

Untitled

Jan 21st, 2022
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 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" id="image">
  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"> Артикул </label>
  30. <div class="col-sm-10">
  31. <input
  32. type="text"
  33. size="60"
  34. maxlength="60"
  35. class="form-control"
  36. id="content"
  37. placeholder="MWP22RU/A"
  38. />
  39.  
  40. <input
  41. type="text"
  42. size="60"
  43. maxlength="60"
  44. class="form-control"
  45. id="content2"
  46. placeholder="SP2R21T79F5"
  47. />
  48. </div>
  49. </div>
  50. <div class="form-group">
  51. <div class="col-sm-offset-2 col-sm-10">
  52. <button type="button" class="btn btn-default" id="generate">
  53. Печать
  54. </button>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59.  
  60. <script src="https://code.jquery.com/jquery-3.5.1.js"></script>
  61.  
  62. <script>
  63. function htmlEncode(value) {
  64. return $('<div/>').text(value).html();
  65. }
  66.  
  67. $(function () {
  68. $('#generate').click(function () {
  69. let finalURL =
  70. 'https://chart.googleapis.com/chart?cht=qr&chl=' +
  71. htmlEncode($('#content').val() + ' ' + $('#content2').val()) +
  72. '&chs=160x160&chld=L|0';
  73.  
  74. $('.qr-code').attr('src', finalURL);
  75. });
  76. });
  77. </script>
  78. </body>
  79. </html>
  80.  
Advertisement
Add Comment
Please, Sign In to add comment