1 $(function() { 2 $("#btn_store").hover(function() { 3 var left = $(this).offset().left; 4 var top = $(this).offset().top; 5 var id = $(this).attr("data-id"); 6 $("#qrcode_box").css({ 7 "left": left, 8 "top": top + 31 9 }).show() 10 }, function() { 11 $("#qrcode_box").fadeOut(); 12 }) 13 })
生成二維碼:php
1 include_once 'phpqrcode.php'; 2 3 $data = isset($_GET['url'])?$_GET['url']:"http://www.sucaihuo.com"; 4 // 糾錯級別:L、M、Q、H 5 $level = 'L'; 6 // 點的大小:1到10,用於手機端4就能夠了 7 $size = 7; 8 // 下面註釋了把二維碼圖片保存到本地的代碼,若是要保存圖片,用$fileName替換第二個參數false 9 //$path = "images/"; 10 // 生成的文件名 11 //$fileName = $path.$size.'.png'; 12 $margin =0;//間距 13 QRcode::png($data, false, $level, $size,$margin);
本實例源碼演示和下載:http://www.sucaihuo.com/php/1436.htmlcss