-
-
Save wernah/9275db6ff7d8fcecfc7d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>diamonds</title> | |
<style type="text/css"> | |
#diamonds { | |
width: 400px; | |
height: 400px; | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
} | |
#diamonds li { | |
height: 40px; | |
overflow: hidden; | |
} | |
#diamonds div { | |
float: left; | |
width: 0; | |
width: 0; | |
border: 20px solid; | |
border-color: #DEDEE4 #E4E4E9 #E4E4E9 #DEDEE4; | |
transition: .5s; | |
} | |
#diamonds div:nth-child(2n) { | |
border-color: #E4E4E9 #E4E4E9 #DEDEE4 #DEDEE4; | |
} | |
#diamonds li:nth-child(2n) div { | |
border-color: #DEDEE4 #DEDEE4 #E4E4E9 #E4E4E9; | |
} | |
#diamonds li:nth-child(2n) div:nth-child(2n) { | |
border-color: #E4E4E9 #DEDEE4 #DEDEE4 #E4E4E9; | |
} | |
@-webkit-keyframes topleft { | |
0%, 100% { | |
border-color: #E4E4E9 #DEDEE4 #DEDEE4 #E4E4E9; | |
} | |
50%, 70% { | |
border-color: #E4E4E9 #8a2784 #8a2784 #E4E4E9; | |
} | |
} | |
@-webkit-keyframes topright { | |
0%, 100% { | |
border-color: #E4E4E9 #DEDEE4 #DEDEE4 #E4E4E9; | |
} | |
50%, 70% { | |
border-color: #E4E4E9 #DEDEE4 #9e2183 #9e2183; | |
} | |
} | |
@-webkit-keyframes bottomleft { | |
0%, 100% { | |
border-color: #E4E4E9 #DEDEE4 #DEDEE4 #E4E4E9; | |
} | |
50%, 70% { | |
border-color: #e00f7f #e00f7f #DEDEE4 #E4E4E9; | |
} | |
} | |
@-webkit-keyframes bottomright { | |
0%, 100% { | |
border-color: #E4E4E9 #DEDEE4 #DEDEE4 #E4E4E9; | |
} | |
50%, 70% { | |
border-color: #c01881 #DEDEE4 #DEDEE4 #c01881; | |
} | |
} | |
#diamonds li:nth-child(5) div:nth-child(5) { | |
-webkit-animation: topleft 1.5s infinite ; | |
} | |
#diamonds li:nth-child(5) div:nth-child(6) { | |
-webkit-animation: topright 1.5s .1s infinite ; | |
} | |
#diamonds li:nth-child(6) div:nth-child(6) { | |
-webkit-animation: bottomright 1.5s .2s infinite ; | |
} | |
#diamonds li:nth-child(6) div:nth-child(5) { | |
-webkit-animation: bottomleft 1.5s .3s infinite ; | |
} | |
</style> | |
</head> | |
<body> | |
<ul id="diamonds"> | |
<li><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></li> | |
<li><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></li> | |
<li><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></li> | |
<li><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></li> | |
<li><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></li> | |
<li><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></li> | |
<li><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></li> | |
<li><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></li> | |
<li><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></li> | |
<li><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment