Skip to content

Commit

Permalink
Added Qr code generator (#847)
Browse files Browse the repository at this point in the history
* Added Qr code generator

* Update README.md

* Update index.html

* Update README.MD
  • Loading branch information
ananyag309 authored Oct 11, 2024
1 parent 3d184c4 commit 18143dd
Show file tree
Hide file tree
Showing 6 changed files with 177 additions and 0 deletions.
72 changes: 72 additions & 0 deletions Vanilla-JS-Projects/Basic/Qr-Code-Generator/README.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<h1 align='center'><b>💥 QR Code Generator 💥</b></h1>

<!-- -------------------------------------------------------------------------------------------------------------- -->

<h3 align='center'>Tech Stack Used 🎮</h3>
<!-- enlist all the technologies used to create this project from them (Remove comment using 'ctrl+z' or 'command+z') -->

<div align='center'>

![HTML5](https://img.shields.io/badge/html5-%23E34F26.svg?style=for-the-badge&logo=html5&logoColor=white)
![CSS3](https://img.shields.io/badge/css3-%231572B6.svg?style=for-the-badge&logo=css3&logoColor=white)
<!-- ![Bootstrap](https://img.shields.io/badge/bootstrap-%238511FA.svg?style=for-the-badge&logo=bootstrap&logoColor=white) -->
![JavaScript](https://img.shields.io/badge/javascript-%23323330.svg?style=for-the-badge&logo=javascript&logoColor=%23F7DF1E)
<!-- ![jQuery](https://img.shields.io/badge/jquery-%230769AD.svg?style=for-the-badge&logo=jquery&logoColor=white) -->
<!-- ![React](https://img.shields.io/badge/react-%2320232a.svg?style=for-the-badge&logo=react&logoColor=%2361DAFB) -->
<!-- ![Redux](https://img.shields.io/badge/redux-%23593d88.svg?style=for-the-badge&logo=redux&logoColor=white) -->
<!-- ![TailwindCSS](https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge&logo=tailwind-css&logoColor=white) -->
<!-- ![Web3.js](https://img.shields.io/badge/web3.js-F16822?style=for-the-badge&logo=web3.js&logoColor=white) -->
<!-- ![Express.js](https://img.shields.io/badge/express.js-%23404d59.svg?style=for-the-badge&logo=express&logoColor=%2361DAFB) -->
<!-- ![Angular.js](https://img.shields.io/badge/angular.js-%23E23237.svg?style=for-the-badge&logo=angularjs&logoColor=white) -->
<!-- ![Next JS](https://img.shields.io/badge/Next-black?style=for-the-badge&logo=next.js&logoColor=white) -->
<!-- ![NodeJS](https://img.shields.io/badge/node.js-6DA55F?style=for-the-badge&logo=node.js&logoColor=white) -->
<!-- ![Vue.js](https://img.shields.io/badge/vuejs-%2335495e.svg?style=for-the-badge&logo=vuedotjs&logoColor=%234FC08D) -->
<!-- ![MongoDB](https://img.shields.io/badge/MongoDB-%234ea94b.svg?style=for-the-badge&logo=mongodb&logoColor=white) -->
</div>


![Line](https://github.com/Avdhesh-Varshney/WebMasterLog/assets/114330097/4b78510f-a941-45f8-a9d5-80ed0705e847)

<!-- -------------------------------------------------------------------------------------------------------------- -->

## :zap: Description 📃

<div>
<!-- <p>Add Description of the project</p> -->
<p>An QR code generator is a tool that converts text, URLs, or other data into a scannable QR code, enabling easy sharing of information.</p>
</div>


<!-- -------------------------------------------------------------------------------------------------------------- -->

## :zap: How to run it? 🕹️

<!-- Add steps how to run this project -->

- Clone this repository.
- Navigate to this project directory
- Run the `index.html` file.

<!-- -------------------------------------------------------------------------------------------------------------- -->

## :zap: Screenshots 📸
<!-- add the screenshot of the project (Mandatory) -->
![img](./screenshot.webp)




![Line](https://github.com/Avdhesh-Varshney/WebMasterLog/assets/114330097/4b78510f-a941-45f8-a9d5-80ed0705e847)

<!-- -------------------------------------------------------------------------------------------------------------- -->

<h4 align='center'>Developed By <b><i>Ananya Gupta</i></b> 👦</h4>
<p align='center'>
<a href='https://github.com/ananyag309'>
<img src='https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge&logo=github&logoColor=white' />
</a>
</p>

<h4 align='center'>Happy Coding 🧑‍💻</h4>

<h3 align="center">Show some &nbsp;❤️&nbsp; by &nbsp;🌟&nbsp; this repository!</h3>
29 changes: 29 additions & 0 deletions Vanilla-JS-Projects/Basic/Qr-Code-Generator/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!--Index.html-->
<!DOCTYPE html>
<html lang="en">

<head>
<link rel="stylesheet" href="./style.css" />
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js">
</script>
</head>

<body>
<div class="header">
<div class="box">
<h1>
QR Code Generator
</h1>
<hr />
<div class="sqrcode"></div>
<div class="qrcode"></div>
<input type="text"
placeholder="Paste a URL or enter text, then enter"
onchange="generateQr()" />
</div>
</div>
<script src="./script.js"></script>
</body>

</html>
Binary file not shown.
19 changes: 19 additions & 0 deletions Vanilla-JS-Projects/Basic/Qr-Code-Generator/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
let qrcode = new QRCode(
document.querySelector(".qrcode")
);
qrcode.makeCode("Why did you scan me?");
function generateQr() {
if (
document.querySelector("input")
.value === "" ||
document.querySelector("input")
.value === " ") {
alert(
"Input Field Can not be blank!"
);}
else {
qrcode.makeCode(
document.querySelector(
"input"
).value);
}}
56 changes: 56 additions & 0 deletions Vanilla-JS-Projects/Basic/Qr-Code-Generator/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
body {
font-family: "Ubuntu", sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: #fff;
box-shadow: 0px 0px 10px
rgba(0, 0, 0, 0.1);
border-radius: 5px;
padding: 20px;
text-align: center;
}
.header {
text-align: center;
}
h1 {
font-size: 28px;
margin-bottom: 10px;
color: #333;
}
hr {
border: 1px solid #ddd;
margin: 20px 0;
}
input[type="text"] {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
}
.qrcode {
margin: 20px 0;
}
button {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
outline: none;
}

/* Hover effect for the button */
button:hover {
background-color: #0056b3;
}
1 change: 1 addition & 0 deletions Vanilla-JS-Projects/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@
| 94 | [Movie-App](./Intermediate/Movie-App/) | ![Intermediate](https://img.shields.io/badge/Intermediate-FFD700?style=for-the-badge) |
| 95 | [Meme-Creator](./Intermediate/Meme-Creator/) | ![Intermediate](https://img.shields.io/badge/Intermediate-FFD700?style=for-the-badge) |
| 96 | [Github-Profile-Viewer](./Intermediate/Github-Profile-Viewer/) | ![Intermediate](https://img.shields.io/badge/Intermediate-FFD700?style=for-the-badge) |
| 97 | [Qr-Code-Generator](./Basic/Qr-Code-Generator/) | ![Basic](https://img.shields.io/badge/Basic-00FF00?style=for-the-badge) |
</div>


Expand Down

0 comments on commit 18143dd

Please sign in to comment.