main beautify
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 10m11s
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 10m11s
This commit is contained in:
29
public/jquery-qrcode/examples/basic.html
Normal file
29
public/jquery-qrcode/examples/basic.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>basic example</title>
|
||||
</head>
|
||||
<body>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
|
||||
|
||||
<!--<script type="text/javascript" src="../jquery.qrcode.min.js"></script>
|
||||
--><script type="text/javascript" src="../src/jquery.qrcode.js"></script>
|
||||
<script type="text/javascript" src="../src/qrcode.js"></script>
|
||||
|
||||
<p>Render in table</p>
|
||||
<div id="qrcodeTable"></div>
|
||||
<p>Render in canvas</p>
|
||||
<div id="qrcodeCanvas"></div>
|
||||
<script>
|
||||
//jQuery('#qrcode').qrcode("this plugin is great");
|
||||
jQuery('#qrcodeTable').qrcode({
|
||||
render : "table",
|
||||
text : "http://jetienne.com"
|
||||
});
|
||||
jQuery('#qrcodeCanvas').qrcode({
|
||||
text : "http://jetienne.com"
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
24
public/jquery-qrcode/examples/demo.html
Normal file
24
public/jquery-qrcode/examples/demo.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Demo page</title>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
TODO make a nice looking pure client qrcode generator
|
||||
even allow download of the image
|
||||
</p>
|
||||
|
||||
<div id="output"></div>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../jquery.qrcode.min.js"></script>
|
||||
<script>
|
||||
jQuery(function(){
|
||||
jQuery('#output').qrcode("http://jetienne.com");
|
||||
})
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user