Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added my animation attempt #2569

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
47 changes: 47 additions & 0 deletions Art/mrcybersecurett/anime.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<style>
div body {
background-color: lightblue;
}

h1 {
color: white;
text-align: center;
}

p {
font-family: verdana;
font-size: 20px;
}

div {
width: 100px;
height: 100px;
background-color: red;
position: relative;
animation-name: animae;
animation-duration: 10s;
}

@keyframes example {
0% {background-color:red; left:0px; top:0px;}
25% {background-color:yellow; left:200px; top:0px;}
50% {background-color:blue; left:200px; top:200px;}
75% {background-color:green; left:0px; top:200px;}
100% {background-color:red; left:0px; top:0px;}
}










</style>
</head>
</body>
60 changes: 60 additions & 0 deletions Art/mrcybersecurett/anime2.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html>
<head>
<style>


h1 {
color: skyblue;
text-align: center;
margin-left: 75px;
}

.fade-in-text {
font-family: Arial;
font-size: 150px;
color: red;
animation: fadeIn 15s;
}

-webkit-animation: fadeIn 10s;
-moz-animation: fadeIn 10s;
-o-animation: fadeIn 10s;
-ms-animation: fadeIn 10s;
}

@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

@-o-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}








</style>
</head>
</body>
Binary file added Art/mrcybersecurett/fadeaway.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions Art/mrcybersecurett/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="anime2.css">
<style>

</style>
</head>
<body>


<h1>Animation Attempt</h1>



<div class="fade-in-text">
<p>This is how I Fade Away</p>
</div>



<p><b>MrCyberSecureTT: </b>After 20 Years Am Back At HTML, CSS, & JScript!</p>

</body>
</html>


12 changes: 6 additions & 6 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -2874,7 +2874,6 @@ let cards = [
author: 'Nyariki Kevin',
githubLink: 'https://github.com/nyrkn10>'
},

{
artName: 'Fascinating Animation',
pageLink: './Art/moutro/index.html',
Expand All @@ -2898,11 +2897,12 @@ let cards = [
},
{
artName: 'First Animation',
pageLink: './Art/Kalliran/index.html',
imageLink: './Art/Kalliran/Animation-Nation.gif',
author: 'Kalliran',
githubLink: 'https://github.com/Kalliran'
},
pageLink: './Art/MrCyberSecureTT/index.html',
imageLink: './Art/mrcybersecurett/fadeaway.gif',
author: 'MrCyberSecureTT',
githubLink: 'https://github.com/mrcybersecurett'
}

];

/* -------------------------------------------------------------------------- */
Expand Down