Skip to content

Commit

Permalink
added 6th project todo list
Browse files Browse the repository at this point in the history
  • Loading branch information
ritesh1507 committed Feb 3, 2024
1 parent 9a0710a commit 568031c
Show file tree
Hide file tree
Showing 3 changed files with 176 additions and 0 deletions.
20 changes: 20 additions & 0 deletions 6.Todo-List/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Todo-List</title>
</head>
<body>
<div id="container-top">
<p style="font-family: 'Trebuchet MS', 'Lucida Sans Unicode'; font-size: larger;">Todo List</p><br>
<input id="text1" placeholder="Task">
<input type="datetime-local" id="date-time" min="">
<button id="add">Add</button>
<button id="clear">Clear List</button>
</div>
<div id="display"></div>
<script src="script.js"></script>
</body>
</html>
53 changes: 53 additions & 0 deletions 6.Todo-List/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
const todoTask=[];
let list='';

document.getElementById("display").style.display="none";

function renderList(){
list='';
for(let i=0;i<todoTask.length;i++){
let temp = `
<div id="display-rows">
<input type="checkbox" id="check">
<div id="date"> ${todoTask[i].dueDate} </div>
<div id="task"> ${todoTask[i].name} </div>
<button onclick="
todoTask.splice(${i}, 1);
renderList();"
id="delete">Delete</button>
</div>
`;
list+=temp;
console.log(todoTask[i].dueDate);
}
document.getElementById("display").innerHTML=list;

if(todoTask.length===0){
document.getElementById("display").style.display="none";
}
else{
document.getElementById("display").style.display="block";
}
}

document.getElementById("add").onclick=function(){
let name= document.getElementById("text1").value;
let dueDate= document.getElementById("date-time").value;
document.getElementById("text1").value='';
document.getElementById("date-time").value='';
todoTask.push({
name:name,
dueDate:dueDate.split('T').join(" ")
});
console.log(dueDate.split('T'));
// document.getElementById("display").innerHTML=list;
console.log(todoTask);
console.log(list);
renderList();
}

document.getElementById("clear").onclick=function(){
todoTask.length = 0;
console.log(todoTask);
renderList();
}
103 changes: 103 additions & 0 deletions 6.Todo-List/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
body{
background-color: rgb(255, 222, 246);
}

#display{
background-color: rgb(159, 178, 253);
/* display: flex;
flex-flow: row wrap;
column-gap:30%;
justify-content: space-around; */
margin: 5% 20%;
padding: 5px 0px 5px 0px;
border-radius: 15px;
}

#container-top{
margin-top: 100px;
text-align: center;
justify-content: center;
}

#display-rows{
margin: 1% 5% 1% 0%;
display: grid;
grid-template-columns: 10% 80% 80%;
/* grid-column: 1; */
/* column-gap: 30%; */
/* flex-direction: row; */
/* justify-content: space-around; */
font-size: medium;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#task{
position: absolute;
left: 50%;
transform: translateX(-50%);
font-weight: 700;
font-size: larger;
}

#date{
transform: translateY(3px);
}

#text1{
height: 25px;
text-align: center;
}

#add,#clear{
height: 30px;
margin-left: 10px;
border-radius: 5px;
border-width: 1px;
border-style: solid;
}
#add{
background-color: rgb(177, 255, 159);
box-shadow: 0 2px 0 0 rgb(25, 129, 53);
}
#clear{
background-color:rgb(159, 218, 255) ;
box-shadow: 0 2px 0 0 rgb(19, 106, 140);
}
#add:active, #clear:active{
cursor: pointer;
transform: translateY(2px);
box-shadow: 0 0;
}

#date-time{
margin-left: 10px;
height: 25px;
}

#delete{
border-radius: 5px;
width: 4rem;
height:1.5rem;
background-color: rgba(255, 99, 99, 0.901);
text-align: center;
border-style: solid;
border-color: rgb(109, 12, 25);
font-size: .8rem;
}
#delete:hover{
cursor: pointer;
}

hr{
border-style: none;
transform: translateY(-5px);
border-top-style:dashed;
border-color: #ffffff;
border-width: 2px;
width: 15%;
opacity: 0.5;
}

input[type="checkbox"] {
accent-color: rgba(111, 239, 111, 0.873);
}

0 comments on commit 568031c

Please sign in to comment.