首頁 > 軟體

基於JS實現二維條碼名片生成的範例程式碼

2022-06-23 14:00:03

演示

技術棧

這裡用到了一個二維條碼生成庫qrcode.js下面是簡單介紹:

//初始化QRCode物件
var qrcode = new QRCode(document.getElementById("qrcode"));
//也可以在初始化QRCode物件,傳入更多引數
var qrcode = new QRCode(document.getElementById("qrcode"),{
width: 128,
height: 128,
colorDark : "#000000",
colorLight : "#ffffff",
correctLevel : QRCode.CorrectLevel.H
});
//需要生成二維條碼的字串
qrcode.makeCode("http://www.leixuesong.cn");
//清除二維條碼
qrcode.clear();
var qrcode = new QRCode("qrcode");

function makeCode () {      
    var elText = document.getElementById("text");
    
    if (!elText.value) {
        alert("Input a text");
        elText.focus();
        return;
    }
    
    qrcode.makeCode(elText.value);
}

makeCode();

$("#text").
on("blur", function () {
    makeCode();
}).
on("keydown", function (e) {
    if (e.keyCode == 13) {
        makeCode();
    }
});

原始碼

css

*{/* 萬用字元: 選擇到所有的標籤元素 */
				margin:0;/*外邊距*/
				padding:0;/*內邊距*/
			}
			body{/* 標籤選擇器 */
				background-image: linear-gradient(#1e045f, #032561, #183661);
				background-position:center top;/*背景定位:左右 上下*/
			}
			.content{
				width:950px;
				margin:auto;
			}
			#wrap{/* # id選擇器*/
				float:left;
				width:480px;/* 寬度 */
				height:280px;/* 高度 */
				/*background:#933;*/
				margin:100px;

			}
			#wrap p{/*混合選擇器*/
				float:left;
				width:200px;
				height:40px;
				border-radius:5px;/*圓角屬性*/
				color:#fff;/*文字的顏色*/
				margin:20px 20px;
				overflow:hidden;/*超出隱藏*/
				text-align:center;
				line-height:40px;
			}
			#wrap p span{/*行內元素 : 設定寬高無效*/
				/*display:block;塊元素佔一行*/
				float:left;
				width:50px;
				height:40px;
				background:#333;
				/*text-align:center;文字左右居中*
				line-height:40px;/*行高*/
				
			}
			#wrap p input{
				float:left;
				width:150px;
				height:40px;
				border:0;
				background:#000;
				color:#fff;
				outline:none;/*輪廓*/
				text-indent:10px;/*首行縮排*/
			}
			#qrcode{
				float:left;/*左浮動:與父元素的左端對齊 依次的往右端顯示*/
				width:260px;
				height:260px;
				border:1px solid red;/*邊框線:寬度 型別(實心) 顏色*/
				margin-top:110px;/*上外邊距100px*/
			}
			p#btn{/*選擇器選擇到越詳細優先順序越高*/
				width:450px;
				background:#6c0;
				cursor:pointer;/*滑鼠手的形狀*/
			}

js

var name='', company='',job='',adress='',moblie='',desc='';
			//特效思維:什麼元素 觸發 什麼事件 實現 什麼效果
			$("#btn").click(function(){//點選實現什麼功能
				//alert("注意點,你點到我了")
				//獲取值
				name = "FN:" + $("#name").val() + "n";//獲取值
				company = "ORG:" + $("#company").val() + "n";
				job = "TITLE:" + $("#job").val() + "n";
				adress = "WORK:" + $("#adress").val() + "n";
				moblie = "TEL:" + $("#moblie").val() + "n";
				desc = "NOTE:" + $("#desc").val() + "n";
				var info ="BEGIN:VCARDn" + name + company + job + adress + moblie + desc + "END:VCARD";
				//console.log(info);//在控制檯輸出
				//生成二維條碼
				var qrcode = new QRCode("qrcode");
				qrcode.makeCode(info);
			});

以上就是基於JS實現二維條碼名片生成的範例程式碼的詳細內容,更多關於JS二維條碼名片的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com