Googlesheet Apps script Webapp | Tạo mã QR Code từ nội dung nhập vào – QR Code Generator
Giaoan.link chia sẻ đến các bạn một project của Googlesheet Apps script Webapp “Tạo mã QR Code từ nội dung nhập vào – QR Code Generator”. Đối với project này, bạn xây dựng một giao diện webapp, truy cập được trên các thiết bị bằng trình duyệt. Trên giao diện này bạn điền nội dung cần mã hóa QR code này sau đó ấn button để tạo một mã QR code dễ dàng. Bạn save mã QR này về thiết bị và chia sẻ cho mọi người. Bên dưới đây là link video demo hướng dẫn và code apps script mẫu, bạn có thể ứng dụng vào thực tế.
Để tìm thêm nhiều project khác, bạn truy cập vào đây.
Các project excel và google sheet ngẫu nhiên:
- Google sheet Apps script | Data Entry Form – Tự động đọc số tiền thành chữ ở trường input
- Google sheet Apps script | Cập nhật điểm lớp học – Theo danh sách lớp và Theo từng học sinh
- Google sheet, apps script Định dạng dấu phân cách hàng ngàn cho input
- Google sheet apps script | Chọn năm và kiểu biểu đồ để Load dữ liệu lên website
- Google sheet apps script | Scan QR code – Filter and get data table display on webapp
- Google sheet apps script Filter to get data to display on webapp, fill background color for data row
- Google sheet Apps script Webapp | Project Quản lý đơn hàng – Cập nhật sản phẩm – In phiếu kiểm soát
- Google sheet Apps script Webapp | Tạo QR Code động – Tự động load mã QR mới khi nội dung mã hóa đổi
- Googlesheet Apps script Webapp | Tạo trang trắc nghiệm online như Quiz
- Google sheet Apps script | Trang trắc nghiệm Quiz – Cập nhật câu hỏi, trả lời, thời gian đếm ngược
Code Apps script trên “Code.gs”
function doGet() {
return HtmlService.createTemplateFromFile('index')
.evaluate()
.addMetaTag('viewport', 'width=device-width, initial-scale=1')
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL)
}
function include(filename) {
return HtmlService.createHtmlOutputFromFile(filename).getContent();
}
Code Apps script trên “index.html”
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<?!= include('QRCodeGenerator'); ?>
<title>Tạo mã QR Code Online</title>
</head>
<body>
<div class="container">
<div class="app-name">
<h2><i class="fa-solid fa-qrcode"></i> Tạo mã QR Code</h2>
</div>
<div class="url-box">
<p>Điền nội dung cần tạo mã QR</p>
<input type="text" class="userInput" id="urlinput" placeholder="Điền nội dung hoặc url">
</div>
<div class="div1">
<button class="generate-btn">TẠO MÃ QR</button>
<button class="generate-btn" id="reset">MỚI</button>
</div>
<div class="qr-box">
<img src="" alt="">
</div>
</div>
<?!= include('Javascript'); ?>
</body>
</html>
Trên trang “QRCodeGenerator.html”
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}
body{
background: #1a96b1;
}
.container{
padding: 20px 30px 30px 20px;
width: 360px;
background: linear-gradient(#ffffff,#5A4CA1);
box-shadow: 2px 2px 5px #464444;
border-radius: 5px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
transition: all .2s;
height: 235px;
}
.container .app-name{
height: 60px;
width: 100%;
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
padding-left: 10px;
font-size: 11px;
border-bottom: 1px solid grey;
}
.container .url-box{
margin-top: 60px;
}
.container .url-box p{
font-size: 12px;
color: #232323;
}
.container .url-box input{
all: unset;
height: 20px;
width: 92%;
padding: 10px;
background: #f5f5f5;
fon-size: 14px;
padding-left: 15px;
margin-top: 8px;
border-radius: 5px;
border: 1px solid grey;
}
.container .generate-btn{
all: unset;
height: 50px;
width:100%;
color: #000;
display: flex;
align-items: center;
justify-content: center;
background: #f2ce06;
border-radius: 5px;
margin: 12px;
cursor: pointer;
font-size: 14px;
font-weight: bold;
}
.container .div1{
display:flex;
align-items: center;
}
.container .qr-box{
height: 200px;
width: 100%;
border: 1px solid #fff;
border-radius: 5px;
margin-top: 25px;
display: flex;
align-items: center;
justify-content: center;
transition: all .2s;
overflow: hidden;
visibility: hidden;
}
</style>
Trên trang “Javascript.html”
<script>
let generatebtn = document.querySelector(".container .generate-btn");
let qr = document.querySelector(".container .qr-box img");
let qrBox = document.querySelector(".container .qr-box");
let userInput = document.querySelector(".container .userInput");
let container = document.querySelector(".container");
generatebtn.addEventListener("click",() =>{
if(userInput.value != ''){
container.style.height = "460px";
generateQRCode();
setTimeout(()=>{
qrBox.style.visibility = 'visible';
},200);
}
});
let generateQRCode =()=>{
//Qr code Api
let url = "https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=" + userInput.value;
qr.src = url;
}
document.getElementById("reset").addEventListener("click", (event) => {
setTimeout(function() {
event.preventDefault()
document.getElementById("urlinput").value =""
}, 000);
})
</script>