Skip to content

Commit

Permalink
Merge pull request #1713 from nfluk/master
Browse files Browse the repository at this point in the history
first commit
  • Loading branch information
l-white committed Sep 6, 2023
2 parents 99cbb06 + 9bfcfe7 commit 1560856
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 0 deletions.
Binary file added Art/nfluk/Screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions Art/nfluk/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>Animation</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<container>
<button>SpIn Me!</button>
</container>
</body>
</html>
29 changes: 29 additions & 0 deletions Art/nfluk/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
body {
background-color: black;
}

container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}

button {
background-image: linear-gradient(45deg, blue, red);
height: 5rem;
width: 5rem;
border-radius: 10px;
font-weight: 900;
animation: rotate 25s infinite ease-out paused;
}

@keyframes rotate {
to {
transform: rotate(7360deg) scale(15);
}
}

button:hover {
animation-play-state: running;
}
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -6532,6 +6532,13 @@ let cards = [
imageLink: './Art/marion/smiles.gif',
author: 'Marion',
githubLink: 'https://github.com/marionjudy13'
},
{
artName: 'Spinning Button',
pageLink: './Art/nfluk/index.html',
imageLink: './Art/nfluk/Screenshot.png',
author: 'nfluk',
githubLink: 'https://github.com/nfluk'
}
];

Expand Down

0 comments on commit 1560856

Please sign in to comment.