forked from Asabeneh/30-Days-Of-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
2,104 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -14,7 +14,6 @@ day9.md | |
day10.md | ||
01_02_03_days_backup.md | ||
test.md | ||
29_Day | ||
30_Day | ||
test.html | ||
res.js |
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,44 @@ | ||
<div align="center"> | ||
<h1> 30 Days Of JavaScript</h1> | ||
<a class="header-badge" target="_blank" href="https://www.linkedin.com/in/asabeneh/"> | ||
<img src="https://img.shields.io/badge/style--5eba00.svg?label=LinkedIn&logo=linkedin&style=social"> | ||
</a> | ||
<a class="header-badge" target="_blank" href="https://twitter.com/Asabeneh"> | ||
<img alt="Twitter Follow" src="https://img.shields.io/twitter/follow/asabeneh?style=social"> | ||
</a> | ||
|
||
<sub>Author: | ||
<a href="https://www.linkedin.com/in/asabeneh/" target="_blank">Asabeneh Yetayeh</a><br> | ||
<small> January, 2020</small> | ||
</sub> | ||
|
||
</div> | ||
|
||
[<< Day 27](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master27_Day27_day_dom_day_7.md) | [Day 29>>](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/29_Day/29_day_dom_day_9.md) | ||
|
||
![Thirty Days Of JavaScript](../images/banners/day_1_28.png) | ||
|
||
- [Day 29](#day-29) | ||
- [Exercises](#exercises) | ||
- [Exercise: Level 1](#exercise-level-1) | ||
- [Exercise: Level 2](#exercise-level-2) | ||
- [Exercise: Level 3](#exercise-level-3) | ||
|
||
# Day 29 | ||
|
||
## Exercises | ||
|
||
### Exercise: Level 1 | ||
|
||
1. Create the following animation using (HTML, CSS, JS) | ||
|
||
![Slider](./../images/projects/dom_min_project_30DaysOfJavaScript_color_changing_day_9.1.gif) | ||
|
||
|
||
### Exercise: Level 2 | ||
|
||
### Exercise: Level 3 | ||
|
||
🎉 CONGRATULATIONS ! 🎉 | ||
|
||
[<< Day 28](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master28_Day28_day_dom_day_8.md) | [Day 30>>](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/30_Day/30_day_dom_day_10.md) |
Binary file added
BIN
+3.73 MB
.../project_1/design/dom_min_project_30DaysOfJavaScript_color_changing_day_9.1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
|
||
<link | ||
href="https://fonts.googleapis.com/css?family=Aldrich|Lato:300,400,700|Montserrat:300,400,500|Nunito:300,400,600|Oswald|Raleway+Dots|Raleway:300,400|Roboto:300,400,500&display=swap" | ||
rel="stylesheet"> | ||
<script src="https://kit.fontawesome.com/ce3e7ed90f.js" crossorigin="anonymous"></script> | ||
<title>30Days Of JavaScript: 29 Project 1</title> | ||
|
||
</head> | ||
|
||
<body> | ||
<div> | ||
|
||
</div> | ||
|
||
<script src="./scripts/main.js"></script> | ||
|
||
</body> | ||
|
||
</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,2 @@ | ||
console.log(countries) | ||
alert('Open the console and check if the countries has been loaded') |
Oops, something went wrong.