From bd2671ff56d7cb7fcc7a2a4be187728f323102ac Mon Sep 17 00:00:00 2001
From: Sam <74021826+x39OME@users.noreply.github.com>
Date: Fri, 5 May 2023 13:51:37 +0300
Subject: [PATCH] Add files via upload
---
.../index.html | 21 ++++++
.../main.js | 28 ++++++++
.../style.css | 65 +++++++++++++++++++
3 files changed, 114 insertions(+)
create mode 100644 100_projects/73-like-and-dislike-using-javascript/index.html
create mode 100644 100_projects/73-like-and-dislike-using-javascript/main.js
create mode 100644 100_projects/73-like-and-dislike-using-javascript/style.css
diff --git a/100_projects/73-like-and-dislike-using-javascript/index.html b/100_projects/73-like-and-dislike-using-javascript/index.html
new file mode 100644
index 0000000..7e11f83
--- /dev/null
+++ b/100_projects/73-like-and-dislike-using-javascript/index.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
Like & Dislike
+
0
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/100_projects/73-like-and-dislike-using-javascript/main.js b/100_projects/73-like-and-dislike-using-javascript/main.js
new file mode 100644
index 0000000..1461462
--- /dev/null
+++ b/100_projects/73-like-and-dislike-using-javascript/main.js
@@ -0,0 +1,28 @@
+(function(){
+ const buttons = document.querySelectorAll('.btn');
+ let count = 0;
+
+ buttons.forEach(function(button){
+ button.addEventListener('click', function(){
+ if(button.classList.contains('prevBtn')){
+ count--
+ }
+ else if(button.classList.contains('nextBtn')){
+ count++
+ }
+ const counter = document.querySelector("#counter");
+ counter.textContent = count
+
+ if(count < 0){
+ counter.style.color = 'red'
+ }
+ else if(count > 0){
+ counter.style.color = "green"
+ }
+ else{
+ counter.style.color = "#333333"
+ }
+ })
+ })
+ // statements
+}) ()
\ No newline at end of file
diff --git a/100_projects/73-like-and-dislike-using-javascript/style.css b/100_projects/73-like-and-dislike-using-javascript/style.css
new file mode 100644
index 0000000..f1a53ac
--- /dev/null
+++ b/100_projects/73-like-and-dislike-using-javascript/style.css
@@ -0,0 +1,65 @@
+*{
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+body, html{
+ display: grid;
+ place-items: center;
+ min-height: 100%;
+ color: #fff;
+ /* background-image: linear-gradient(to right, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1); */
+ background-image: linear-gradient(to right, #845ec2, #d65db1, #ff6f91, #ff9671, #ffc75f, #f9f871, #9bde7e, #4bbc8e, #039590, #1c6e7d, #2f4858, #2f4858);
+}
+body::before{
+ content: '';
+ position: absolute;
+ width: 200px;
+ height: 200px;
+ background: linear-gradient(#f3f5f5, #9c27b0);
+ transform: translate(-110px, -160px);
+ border-radius: 40%;
+}
+body::after{
+ content: '';
+ position: absolute;
+ width: 200px;
+ height: 200px;
+ background: linear-gradient(#ff2871,rgba(255,40, 113, .2));
+ transform: translate(110px, 150px);
+ border-radius: 35%;
+}
+.card{
+ width: 350px;
+ height: 250px;
+ border-radius: 20px;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ z-index: 99999;
+ border: 1px solid rgba(255, 255, 255, .05);
+ background: rgba(255, 255, 255, .05);
+ backdrop-filter: blur(15px);
+ box-shadow: 5px 5px 30px rgba(0,0,0,.2);
+}
+.name{
+ font-size: 2rem;
+}
+#counter{
+ font-size: 3rem;
+ margin-bottom: 1rem;
+}
+.prevBtn, .nextBtn{
+ font-size: 1rem;
+ outline: none;
+ padding: .7rem 1.5rem;
+ margin: 0 2rem;
+ cursor: pointer;
+ border: 1px solid rgba(255, 255, 255, .8);
+ background: rgba(255, 255, 255, .05);
+ backdrop-filter: blur(15px);
+ box-shadow: 5px 5px 30px rgba(0,0,0,.2);
+ border-radius: 50%;
+ color: #fff;
+}
\ No newline at end of file