Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Art/Arlington Animation/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title></title>
</head>
<body>
<div class="circle"></div>
<div class="circle2"></div>

</body>
</html>
3 changes: 3 additions & 0 deletions Art/Arlington Animation/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"artName": "circles"
"githubhandle": "akersarlington"
"githubLink": "https://github.com/akersarlington"
26 changes: 26 additions & 0 deletions Art/Arlington Animation/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.circle {
position: absolute;
top: 50px;
left: 50px;
background: blue;
width: 100px;
height: 100px;
border-radius: 50%;
animation: slide 2s infinite alternate;
}

@keyframes slide {
from {left:0;}
to { left: 300px }
}

.circle2 {
position: absolute;
top: 100px;
left: 50px;
background: darkred;
width: 100px;
height: 100px;
border-radius: 50%;
animation: slide 3s infinite alternate;
}
Empty file added meta.json
Empty file.