-
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.
* adding my art to project * Update include.js --------- Co-authored-by: Laureline Paris <[email protected]>
- Loading branch information
1 parent
64aa357
commit fae1ff7
Showing
4 changed files
with
60 additions
and
6 deletions.
There are no files selected for viewing
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,14 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="style.css" /> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<div id="one"></div> | ||
<div id="two"></div> | ||
<div id="three"></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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
div#one { | ||
height: 100px; | ||
width: 100%; | ||
background: #331509; | ||
animation: slidein 0.5s linear 1s infinite; | ||
} | ||
|
||
div#two { | ||
height: 100px; | ||
width: 100%; | ||
background: #d19175; | ||
animation: slidein 0.3s linear 1s infinite; | ||
} | ||
|
||
div#three { | ||
height: 100px; | ||
width: 100%; | ||
background: #a46c54; | ||
animation: slidein 0.4s linear 1s infinite; | ||
} | ||
|
||
@keyframes slidein { | ||
from { | ||
margin-left: 100%; | ||
width: 300%; | ||
} | ||
to { | ||
margin-left: 0%; | ||
width: 100%; | ||
} | ||
} |
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