|
- <!doctype html>
- <script src="jquery.min.js">
- </script>
- <script src="qrcode.min.js">
- </script>
- <style>
- body {
- padding: 10px;
- margin: 0;
- }
- #qrcode {
- width:300px;
- height:300px;
- }
- </style>
- <div id="qrcode"></div>
- <script type="text/javascript">
- function genCode(code) {
- new QRCode("qrcode", {
- text: code,
- width: 300,
- height: 300,
- colorDark : "#000000",
- colorLight : "#ffffff",
- correctLevel : QRCode.CorrectLevel.H
- });
- }
- </script>
|