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

adding my new art #2295

Merged
merged 16 commits into from
Oct 22, 2023
Merged
46 changes: 46 additions & 0 deletions Art/K-Wiczling/complex.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
.inner {
background-color: red;
width: 100px;
height: 100px;
border-radius: 44%;
animation: box 15s infinite;
}
.box{
animation: rot 2s infinite;
background-color: black;
width: 300px;
height: 300px;
margin: 0 auto;
margin-top: 30vh;

}
#inner1{
background-color: red;

}
#inner2{
background-color: greenyellow;

}
#inner3{
background-color: goldenrod;

}
@keyframes box {
0% {
background-color: red;
}

100% {
background-color: green;
}
}
@keyframes rot {
0%,
100% {
transform: rotate(360deg);
}
50% {
transform: rotate(0deg);
}
}
15 changes: 15 additions & 0 deletions Art/K-Wiczling/complex.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<link rel="stylesheet" href="complex.css" />

<div class="animation-wrapper">
<div class="box">
<div class="inner" id="inner1">

</div>
<div class="inner" id="inner2">

</div>
<div class="inner" id="inner3">

</div>
</div>
</div>
Binary file added Art/K-Wiczling/complex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions Art/K-Wiczling/square.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,16 @@
100% {
transform: scale(1);
}
<<<<<<< HEAD

50% {
transform: scale(1.5);
}
}
=======

50% {
transform: scale(1.5);
}
}
>>>>>>> 783945a70f7eef9138a7738237de9f98f7962d83
5 changes: 5 additions & 0 deletions Art/K-Wiczling/square.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<link rel="stylesheet" href="square.css" />

<div class="animation-wrapper">
<<<<<<< HEAD
<div class="box1">
</div>
=======
<div class="box1"></div>
>>>>>>> 783945a70f7eef9138a7738237de9f98f7962d83
</div>
12 changes: 12 additions & 0 deletions include.js
sophiabrandt marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -2166,16 +2166,28 @@ let cards = [
githubLink: 'https://github.com/gabriel-conde'
},
{
<<<<<<< HEAD
artName: 'Square',
pageLink: './Art/K-Wiczling/square.html',
imageLink: './Art/K-Wiczling/square.gif',
=======
artName: 'Square',
pageLink: './Art/K-Wiczling/square.html',
imageLink: './Art/K-Wiczling/square.gif',
>>>>>>> 783945a70f7eef9138a7738237de9f98f7962d83
author: 'K-Wiczling',
githubLink: 'https://github.com/K-Wiczling'
},
{
<<<<<<< HEAD
artName: 'Circle',
pageLink: './Art/K-Wiczling/circle.html',
imageLink: './Art/K-Wiczling/circle.png',
=======
artName: 'Circle',
pageLink: './Art/K-Wiczling/circle.html',
imageLink: './Art/K-Wiczling/circle.png',
>>>>>>> 783945a70f7eef9138a7738237de9f98f7962d83
author: 'K-Wiczling',
githubLink: 'https://github.com/K-Wiczling'
},
Expand Down