Add files via upload
This commit is contained in:
parent
b057c790ac
commit
9486deab75
23
100_projects/61-a-message-to-pass/index.html
Normal file
23
100_projects/61-a-message-to-pass/index.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
|
<title>Document</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<h4>A Message You Would To Pass</h4>
|
||||||
|
<form action="" id="message-form">
|
||||||
|
<input type="text" name="" id="message" class="box" placeholder="Type Your Message">
|
||||||
|
<input type="submit" name="" value="Submit" id="submit" class="button">
|
||||||
|
</form>
|
||||||
|
<h5 class="feedback">Please type a value to pass</h5>
|
||||||
|
<h4>Last Message Delivered !</h4>
|
||||||
|
<h4 class="message-content">Hello Everyone !</h4>
|
||||||
|
</div>
|
||||||
|
<script src="main.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
21
100_projects/61-a-message-to-pass/main.js
Normal file
21
100_projects/61-a-message-to-pass/main.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
(function(){
|
||||||
|
const form = document.querySelector('#message-form');
|
||||||
|
|
||||||
|
form.addEventListener('submit', function(e){
|
||||||
|
e.preventDefault()
|
||||||
|
|
||||||
|
const message = document.querySelector('#message');
|
||||||
|
const feedback = document.querySelector('.feedback');
|
||||||
|
const messageContent = document.querySelector('.message-content');
|
||||||
|
|
||||||
|
if(message.value === ''){
|
||||||
|
feedback.classList.add('show');
|
||||||
|
setTimeout(function(){
|
||||||
|
feedback.classList.remove('show')
|
||||||
|
}, 4000)
|
||||||
|
} else{
|
||||||
|
messageContent.textContent = message.value;
|
||||||
|
message.value = ''
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})()
|
94
100_projects/61-a-message-to-pass/style.css
Normal file
94
100_projects/61-a-message-to-pass/style.css
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
*{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
body, html{
|
||||||
|
display: grid;
|
||||||
|
place-items: center;
|
||||||
|
background-color: #161623;
|
||||||
|
height: 100%;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
.container{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
position: relative;
|
||||||
|
backdrop-filter:blur(15px);
|
||||||
|
padding: 50px 60px;
|
||||||
|
background:linear-gradient(to right, #D4D3DD, #EFEFBB);
|
||||||
|
border: 1px solid rgba(255, 255, 255, .1);
|
||||||
|
box-shadow: 10px 5px 30px rgba(255, 255, 255, .1);
|
||||||
|
border-radius: 5px;
|
||||||
|
z-index: 10000;
|
||||||
|
}
|
||||||
|
.container::after{
|
||||||
|
content: '';
|
||||||
|
height: 200px;
|
||||||
|
width: 250px;
|
||||||
|
position: absolute;
|
||||||
|
z-index: -1;
|
||||||
|
top: 90px;
|
||||||
|
left: 20px;
|
||||||
|
background:rgba(255, 255, 255, .1);
|
||||||
|
box-shadow: 10px 5px 30px rgba(255, 255, 255, 1);
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
h4{
|
||||||
|
font-size: 1.5rem;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
line-height: 1.2;
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
|
form{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
form input{
|
||||||
|
margin: 10px 0;
|
||||||
|
outline: none;
|
||||||
|
border: 1px solid rgba(0, 0, 0, .5);
|
||||||
|
background-color: rgba(255, 255, 255, .2);
|
||||||
|
}
|
||||||
|
form input.box{
|
||||||
|
border-radius: 4px;
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
form input.button{
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 8px 20px;
|
||||||
|
background-color: rgba(255, 255, 255, .2);
|
||||||
|
border-radius: 4px;
|
||||||
|
transition: .3s;
|
||||||
|
color: #000;
|
||||||
|
text-transform: uppercase;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
form input.button:hover{
|
||||||
|
background-color:rgba(255, 255, 255, .7);
|
||||||
|
box-shadow: 3px 3px 3px rgba(255, 255, 255, .5);
|
||||||
|
}
|
||||||
|
h5{
|
||||||
|
background-color: #FFD4CD;
|
||||||
|
color: #161623;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
width: 100%;
|
||||||
|
padding: 8px 0;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
.feedback{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.show{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.message-content{
|
||||||
|
color:#5b921b
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user