-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1710 from zero-to-mastery/fix-broken-code
first commit for this issue
- Loading branch information
Showing
131 changed files
with
9,982 additions
and
9,698 deletions.
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 |
---|---|---|
@@ -1,19 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Abel's Animation</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="wrapper"> | ||
<div class="static-txt">Hey, I'm A</div> | ||
<ul class="dynamic-txts"> | ||
<li><span> Awesome Developer.</span></li> | ||
<li><span> Back-End Developer.</span></li> | ||
<li><span> Front-End Developer.</span></li> | ||
<li><span> Full-Stack Developer.</span></li> | ||
</ul> | ||
</body> | ||
</html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>Abel's Animation</title> | ||
<link rel="stylesheet" type="text/css" href="style.css" /> | ||
</head> | ||
<body> | ||
<div class="wrapper"> | ||
<div class="static-txt">Hey, I'm A</div> | ||
<ul class="dynamic-txts"> | ||
<li><span> Awesome Developer.</span></li> | ||
<li><span> Back-End Developer.</span></li> | ||
<li><span> Front-End Developer.</span></li> | ||
<li><span> Full-Stack Developer.</span></li> | ||
</ul> | ||
</div> | ||
</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
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title></title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
</div> | ||
</body> | ||
</html> | ||
<head> | ||
<title></title> | ||
<link rel="stylesheet" type="text/css" href="style.css" /> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
<div class="ball"></div> | ||
</div> | ||
</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 |
---|---|---|
@@ -1,140 +1,140 @@ | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
background: #000000; | ||
margin: 0; | ||
padding: 0; | ||
background: #000000; | ||
} | ||
|
||
.container { | ||
width: 200px; | ||
height: 100px; | ||
padding-top: 100px; | ||
margin: 0 auto; | ||
width: 200px; | ||
height: 100px; | ||
padding-top: 100px; | ||
margin: 0 auto; | ||
} | ||
|
||
.ball { | ||
width: 10px; | ||
height: 10px; | ||
margin: 10px auto; | ||
border-radius: 50px; | ||
width: 10px; | ||
height: 10px; | ||
margin: 10px auto; | ||
border-radius: 50px; | ||
} | ||
|
||
.ball:nth-child(1) { | ||
background: #9F00FF; | ||
-webkit-animation: right 1s infinite ease-in-out; | ||
-moz-animation: right 1s infinite ease-in-out; | ||
animation: right 1s infinite ease-in-out; | ||
background: #9f00ff; | ||
-webkit-animation: right 1s infinite ease-in-out; | ||
-moz-animation: right 1s infinite ease-in-out; | ||
animation: right 1s infinite ease-in-out; | ||
} | ||
|
||
.ball:nth-child(2) { | ||
background: #ceff00; | ||
-webkit-animation: left 1.1s infinite ease-in-out; | ||
-moz-animation: left 1.1s infinite ease-in-out; | ||
animation: left 1.1s infinite ease-in-out; | ||
background: #ceff00; | ||
-webkit-animation: left 1.1s infinite ease-in-out; | ||
-moz-animation: left 1.1s infinite ease-in-out; | ||
animation: left 1.1s infinite ease-in-out; | ||
} | ||
|
||
.ball:nth-child(3) { | ||
background: #FF6FFF; | ||
-webkit-animation: right 1.05s infinite ease-in-out; | ||
-moz-animation: right 1.05s infinite ease-in-out; | ||
animation: right 1.05s infinite ease-in-out; | ||
background: #ff6fff; | ||
-webkit-animation: right 1.05s infinite ease-in-out; | ||
-moz-animation: right 1.05s infinite ease-in-out; | ||
animation: right 1.05s infinite ease-in-out; | ||
} | ||
|
||
.ball:nth-child(4) { | ||
background: #eee600; | ||
-webkit-animation: left 1.15s infinite ease-in-out; | ||
-moz-animation: left 1.15s infinite ease-in-out; | ||
animation: left 1.15s infinite ease-in-out; | ||
background: #eee600; | ||
-webkit-animation: left 1.15s infinite ease-in-out; | ||
-moz-animation: left 1.15s infinite ease-in-out; | ||
animation: left 1.15s infinite ease-in-out; | ||
} | ||
|
||
.ball:nth-child(5) { | ||
background: #3f00ff; | ||
-webkit-animation: right 1.1s infinite ease-in-out; | ||
-moz-animation: right 1.1s infinite ease-in-out; | ||
animation: right 1.1s infinite ease-in-out; | ||
background: #3f00ff; | ||
-webkit-animation: right 1.1s infinite ease-in-out; | ||
-moz-animation: right 1.1s infinite ease-in-out; | ||
animation: right 1.1s infinite ease-in-out; | ||
} | ||
|
||
.ball:nth-child(6) { | ||
background: #ff6347; | ||
-webkit-animation: left 1.05s infinite ease-in-out; | ||
-moz-animation: left 1.05s infinite ease-in-out; | ||
animation: left 1.05s infinite ease-in-out; | ||
background: #ff6347; | ||
-webkit-animation: left 1.05s infinite ease-in-out; | ||
-moz-animation: left 1.05s infinite ease-in-out; | ||
animation: left 1.05s infinite ease-in-out; | ||
} | ||
|
||
.ball:nth-child(7) { | ||
background: #a7fc00; | ||
-webkit-animation: right 1s infinite ease-in-out; | ||
-moz-animation: right 1s infinite ease-in-out; | ||
animation: right 1s infinite ease-in-out; | ||
background: #a7fc00; | ||
-webkit-animation: right 1s infinite ease-in-out; | ||
-moz-animation: right 1s infinite ease-in-out; | ||
animation: right 1s infinite ease-in-out; | ||
} | ||
|
||
@-webkit-keyframes right { | ||
0% { | ||
-webkit-transform: translate(-15px); | ||
} | ||
50% { | ||
-webkit-transform: translate(15px); | ||
} | ||
100% { | ||
-webkit-transform: translate(-15px); | ||
} | ||
0% { | ||
-webkit-transform: translate(-15px); | ||
} | ||
50% { | ||
-webkit-transform: translate(15px); | ||
} | ||
100% { | ||
-webkit-transform: translate(-15px); | ||
} | ||
} | ||
|
||
@-webkit-keyframes left { | ||
0% { | ||
-webkit-transform: translate(15px); | ||
} | ||
50% { | ||
-webkit-transform: translate(-15px); | ||
} | ||
100% { | ||
-webkit-transform: translate(15px); | ||
} | ||
0% { | ||
-webkit-transform: translate(15px); | ||
} | ||
50% { | ||
-webkit-transform: translate(-15px); | ||
} | ||
100% { | ||
-webkit-transform: translate(15px); | ||
} | ||
} | ||
|
||
@-moz-keyframes right { | ||
0% { | ||
-moz-transform: translate(-15px); | ||
} | ||
50% { | ||
-moz-transform: translate(15px); | ||
} | ||
100% { | ||
-moz-transform: translate(-15px); | ||
} | ||
0% { | ||
-moz-transform: translate(-15px); | ||
} | ||
50% { | ||
-moz-transform: translate(15px); | ||
} | ||
100% { | ||
-moz-transform: translate(-15px); | ||
} | ||
} | ||
|
||
@-moz-keyframes left { | ||
0% { | ||
-moz-transform: translate(15px); | ||
} | ||
50% { | ||
-moz-transform: translate(-15px); | ||
} | ||
100% { | ||
-moz-transform: translate(15px); | ||
} | ||
0% { | ||
-moz-transform: translate(15px); | ||
} | ||
50% { | ||
-moz-transform: translate(-15px); | ||
} | ||
100% { | ||
-moz-transform: translate(15px); | ||
} | ||
} | ||
|
||
@keyframes right { | ||
0% { | ||
transform: translate(-15px); | ||
} | ||
50% { | ||
transform: translate(15px); | ||
} | ||
100% { | ||
transform: translate(-15px); | ||
} | ||
0% { | ||
transform: translate(-15px); | ||
} | ||
50% { | ||
transform: translate(15px); | ||
} | ||
100% { | ||
transform: translate(-15px); | ||
} | ||
} | ||
|
||
@keyframes left { | ||
0% { | ||
transform: translate(15px); | ||
} | ||
50% { | ||
transform: translate(-15px); | ||
} | ||
100% { | ||
transform: translate(15px); | ||
} | ||
} | ||
0% { | ||
transform: translate(15px); | ||
} | ||
50% { | ||
transform: translate(-15px); | ||
} | ||
100% { | ||
transform: translate(15px); | ||
} | ||
} |
Oops, something went wrong.