Skip to content

Commit

Permalink
Merge pull request #346 from PradnyaGaitonde/PradnyaGaitonde-patch-2
Browse files Browse the repository at this point in the history
Barcode Generator API
  • Loading branch information
Kritika30032002 authored Aug 5, 2024
2 parents f9e887e + 7109e39 commit fe38363
Show file tree
Hide file tree
Showing 5 changed files with 118 additions and 0 deletions.
42 changes: 42 additions & 0 deletions New_APIs/Barcode-Generator/Barcode Generator/READme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Barcode Generator
This is a simple barcode generator application built using HTML, CSS, and JavaScript. The application allows users to input a string and generate a corresponding barcode.

## Features
* Generate barcodes from user input.
* Simple and easy-to-use interface.
* Responsive design for different screen sizes.

## Technologies Used
* HTML
* CSS
* JavaScript
* JsBarcode library

## Getting Started
* Prerequisites
To run this project locally, you need a web browser.

* Installation
Clone the repository:

```bash
git clone https://github.com/your-username/barcode-generator.git
```

* Navigate to the project directory:

```bash
cd barcode-generator
```

* Open index.html in your web browser to see the barcode generator in action.

## Usage
* Open the application in your web browser.
* Enter the text you want to convert into a barcode in the input field.
* Click the "Generate Barcode" button to generate the barcode.
* The generated barcode will be displayed below the input field.

## Screenshots

![alt text](image.png)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions New_APIs/Barcode-Generator/Barcode Generator/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Barcode Generator</title>
<!-- Google Fonts-->
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<!-- Barcode CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jsbarcode/3.11.6/JsBarcode.all.min.js"></script>
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>Barcode Generator</h1>
<input type="text" id="input" />
<button id="btn-barcode-generator">Barcode Generator</button>
<svg id="barcode"></svg>
</div>
<script src="script.js"></script>
</body>
</html>
13 changes: 13 additions & 0 deletions New_APIs/Barcode-Generator/Barcode Generator/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
let input = document.getElementById("input");
let btn = document.getElementById("btn-barcode-generator");
btn.addEventListener("click", () => {
JsBarcode("#barcode", input.value, {
format: "code128",
displayValue: true,
fontSize: 24,
lineColor: "#000",
});
});
window.onload = (event) => {
input.value = "";
};
38 changes: 38 additions & 0 deletions New_APIs/Barcode-Generator/Barcode Generator/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background-color: #0092fd;
}
.container {
width: min(500px, 90vw);
background-color: #ffffff;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
padding: 3rem;
border-radius: 0.8em;
}
h1 {
font-size: 2em;
margin-bottom: 1em;
}
input {
width: 60%;
border: 1px solid #000000;
padding: 1em;
border-radius: 0.7em;
}
button {
background-color: #0092fd;
color: #ffffff;
border: none;
width: 38%;
border-radius: 0.7em;
padding: 1em;
font-size: 0.8em;
}

0 comments on commit fe38363

Please sign in to comment.