forked from wesbos/JavaScript30
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Project 10 projectnotes index file
- Loading branch information
1 parent
7dc2430
commit 35f6360
Showing
1 changed file
with
104 additions
and
0 deletions.
There are no files selected for viewing
104 changes: 104 additions & 0 deletions
104
10 - Hold Shift and Check Checkboxes/index-projectnotes.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Hold Shift to Check Multiple Checkboxes</title> | ||
</head> | ||
<body> | ||
<style> | ||
|
||
html { | ||
font-family: sans-serif; | ||
background:#ffc600; | ||
} | ||
|
||
.inbox { | ||
max-width:400px; | ||
margin:50px auto; | ||
background:white; | ||
border-radius:5px; | ||
box-shadow:10px 10px 0 rgba(0,0,0,0.1); | ||
} | ||
|
||
.item { | ||
display:flex; | ||
align-items:center; | ||
border-bottom: 1px solid #F1F1F1; | ||
} | ||
|
||
.item:last-child { | ||
border-bottom:0; | ||
} | ||
|
||
|
||
input:checked + p { | ||
background:#F9F9F9; | ||
text-decoration: line-through; | ||
} | ||
|
||
input[type="checkbox"] { | ||
margin:20px; | ||
} | ||
|
||
p { | ||
margin:0; | ||
padding:20px; | ||
transition:background 0.2s; | ||
flex:1; | ||
font-family:'helvetica neue'; | ||
font-size: 20px; | ||
font-weight: 200; | ||
border-left: 1px solid #D1E2FF; | ||
} | ||
|
||
|
||
</style> | ||
<!-- | ||
The following is a common layout you would see in an email client. | ||
When a user clicks a checkbox, holds Shift, and then clicks another checkbox a few rows down, all the checkboxes inbetween those two checkboxes should be checked. | ||
--> | ||
<div class="inbox"> | ||
<div class="item"> | ||
<input type="checkbox"> | ||
<p>This is an inbox layout.</p> | ||
</div> | ||
<div class="item"> | ||
<input type="checkbox"> | ||
<p>Check one item</p> | ||
</div> | ||
<div class="item"> | ||
<input type="checkbox"> | ||
<p>Hold down your Shift key</p> | ||
</div> | ||
<div class="item"> | ||
<input type="checkbox"> | ||
<p>Check a lower item</p> | ||
</div> | ||
<div class="item"> | ||
<input type="checkbox"> | ||
<p>Everything inbetween should also be set to checked</p> | ||
</div> | ||
<div class="item"> | ||
<input type="checkbox"> | ||
<p>Try do it without any libraries</p> | ||
</div> | ||
<div class="item"> | ||
<input type="checkbox"> | ||
<p>Just regular JavaScript</p> | ||
</div> | ||
<div class="item"> | ||
<input type="checkbox"> | ||
<p>Good Luck!</p> | ||
</div> | ||
<div class="item"> | ||
<input type="checkbox"> | ||
<p>Don't forget to tweet your result!</p> | ||
</div> | ||
</div> | ||
|
||
<script> | ||
</script> | ||
</body> | ||
</html> |