Skip to content

Commit

Permalink
Merge pull request #1719 from ornitcg/myAnimaBranch
Browse files Browse the repository at this point in the history
My anima branch
  • Loading branch information
l-white committed Sep 11, 2023
2 parents d19a23e + 78ad558 commit 4864426
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Art/OrnitCG/index.html
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">
<title>CSS</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class= "circ">
</div>

</body>
</html>
Binary file added Art/OrnitCG/myGif.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions Art/OrnitCG/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

.circ{
width: 200px;
height: 200px; /* Ensure width and height are equal for a circle */
border: 10px solid transparent;
border-image: linear-gradient(90deg, #ff0000, #00ff00, #0000ff, #ff0000);
border-image-slice: 1;
border-radius: 50%;
animation: roll 4s linear infinite;
animation-name: roll;
}

@keyframes roll {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -6554,6 +6554,13 @@ let cards = [
author: 'carv066',
githubLink: 'https://github.com/carv0066'
}
{
artName: 'Rolling',
pageLink: './Art/OrnitCG/index.html',
imageLink: '.Art/OrnitCG/myGif.html',
author: 'OrnitCG',
githubLink: 'https://github.com/ornitcg'
}
];

// +--------------------------------------------------------------------------------+
Expand Down

0 comments on commit 4864426

Please sign in to comment.