Skip to content

Commit 909c9c0

Browse files
committedSep 14, 2023
basic to do list
1 parent 19ed469 commit 909c9c0

File tree

3 files changed

+176
-0
lines changed

3 files changed

+176
-0
lines changed
 

‎JavaScript-todo-list/script.js

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
var myNodelist = document.getElementsByTagName("LI");
2+
var i;
3+
for (i = 0; i < myNodelist.length; i++) {
4+
var span = document.createElement("SPAN");
5+
var txt = document.createTextNode("\u00D7");
6+
span.className = "close";
7+
span.appendChild(txt);
8+
myNodelist[i].appendChild(span);
9+
}
10+
11+
var close = document.getElementsByClassName("close");
12+
var i;
13+
for (i = 0; i < close.length; i++) {
14+
close[i].onclick = function() {
15+
var div = this.parentElement;
16+
div.style.display = "none";
17+
}
18+
}
19+
20+
var list = document.querySelector('ul');
21+
list.addEventListener('click', function(ev) {
22+
if (ev.target.tagName === 'LI') {
23+
ev.target.classList.toggle('checked');
24+
}
25+
}, false);
26+
27+
function newElement() {
28+
var li = document.createElement("li");
29+
var inputValue = document.getElementById("myInput").value;
30+
var t = document.createTextNode(inputValue);
31+
li.appendChild(t);
32+
if (inputValue === '') {
33+
alert("You must write something!");
34+
} else {
35+
document.getElementById("myUL").appendChild(li);
36+
}
37+
document.getElementById("myInput").value = "";
38+
39+
var span = document.createElement("SPAN");
40+
var txt = document.createTextNode("\u00D7");
41+
span.className = "close";
42+
span.appendChild(txt);
43+
li.appendChild(span);
44+
45+
for (i = 0; i < close.length; i++) {
46+
close[i].onclick = function() {
47+
var div = this.parentElement;
48+
div.style.display = "none";
49+
}
50+
}
51+
}

‎JavaScript-todo-list/style.css

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
* {
2+
box-sizing: border-box;
3+
}
4+
5+
ul {
6+
margin: 0;
7+
padding: 0;
8+
}
9+
10+
ul li {
11+
cursor: pointer;
12+
position: relative;
13+
padding: 12px 8px 12px 40px;
14+
background: #eee;
15+
font-size: 18px;
16+
transition: 0.2s;
17+
18+
-webkit-user-select: none;
19+
-moz-user-select: none;
20+
-ms-user-select: none;
21+
user-select: none;
22+
}
23+
24+
ul li:nth-child(odd) {
25+
background: #f9f9f9;
26+
}
27+
28+
ul li:hover {
29+
background: #ddd;
30+
}
31+
32+
ul li.checked {
33+
background: #888;
34+
color: #fff;
35+
text-decoration: line-through;
36+
}
37+
38+
ul li.checked::before {
39+
content: '';
40+
position: absolute;
41+
border-color: #fff;
42+
border-style: solid;
43+
border-width: 0 2px 2px 0;
44+
top: 10px;
45+
left: 16px;
46+
transform: rotate(45deg);
47+
height: 15px;
48+
width: 7px;
49+
}
50+
51+
.close {
52+
position: absolute;
53+
right: 0;
54+
top: 0;
55+
padding: 12px 16px 12px 16px;
56+
}
57+
58+
.close:hover {
59+
background-color: #f44336;
60+
color: white;
61+
}
62+
63+
.header {
64+
background-color: #ebae2a;
65+
padding: 30px 40px;
66+
color: white;
67+
text-align: center;
68+
}
69+
70+
.header:after {
71+
content: "";
72+
display: table;
73+
clear: both;
74+
}
75+
76+
input {
77+
margin: 0;
78+
border: none;
79+
border-radius: 0;
80+
width: 75%;
81+
padding: 10px;
82+
float: left;
83+
font-size: 16px;
84+
}
85+
86+
.addBtn {
87+
padding: 9px;
88+
width: 25%;
89+
background: #d9d9d9;
90+
color: #555;
91+
float: left;
92+
text-align: center;
93+
font-size: 16px;
94+
cursor: pointer;
95+
transition: 0.3s;
96+
border-radius: 0;
97+
}
98+
99+
.addBtn:hover {
100+
background-color: green;
101+
}

‎JavaScript-todo-list/todo.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>To-do-list</title>
6+
<link href="style.css" rel="stylesheet"/>
7+
</head>
8+
<body>
9+
<div id='myDiv' class="header">
10+
<h2>My To Do List</h2>
11+
<input type = "text" id="myInput" placeholder="Title...">
12+
<span onclick="newElement()" class="addBtn">Add</span>
13+
</div>
14+
<ul id="myUL">
15+
<li>Hit the gym</li>
16+
<li class="checked">Pay bills</li>
17+
<li>Meet George</li>
18+
<li>Buy eggs</li>
19+
<li>Read a book</li>
20+
<li>Organize office</li>
21+
</ul>
22+
<script src="script.js" type="text/javascript"></script>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)
Please sign in to comment.