Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit b378b13

Browse files
committed
adding my animation to the project
1 parent 8f2e7a5 commit b378b13

File tree

5 files changed

+72
-0
lines changed

5 files changed

+72
-0
lines changed

Art/poltu/artmotion index.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title> My first Art Animation</title>
7+
<link rel="stylesheet" type="text/css" href="artstyle.css">
8+
<link
9+
rel="stylesheet"
10+
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
11+
/>
12+
</head>
13+
<body>
14+
<h1 class="animate__animated animate__heartBeat">City Life</h1>
15+
<div class="container">
16+
<img src="https://pixune.com/wp-content/uploads/2023/03/world.png">
17+
</div>
18+
19+
</body>
20+
</html>

Art/poltu/artstyle.css

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
*{
2+
text-align: center;
3+
}
4+
body{
5+
background-color: skyblue;
6+
}
7+
8+
h1{
9+
font-family: fantasy;
10+
font-size: 4em;
11+
border-bottom: 2px solid pink;
12+
width: 400px;
13+
text-align: center;
14+
box-shadow: 4px 4px 5px #888888;
15+
margin-top: 10px;
16+
17+
}
18+
19+
.my-element {
20+
display: inline-block;
21+
margin: 0 0.5rem;
22+
23+
animation: heartBeat;
24+
animation-duration: 2s;
25+
}
26+
.my-element {
27+
--animate-repeat: 2;
28+
}
29+
30+
img{
31+
width: 550px;
32+
height: 350px;
33+
margin: 10px;
34+
}
35+
img:hover {
36+
transform: scale(1.1);
37+
}
38+
.container {
39+
display: flex;
40+
flex-wrap: wrap;
41+
justify-content: center;
42+
}
43+
.container:hover {
44+
transform: rotate(-15deg);
45+
}

Art/poltu/world.gif

250 KB
Loading

include.js

+7
Original file line numberDiff line numberDiff line change
@@ -9445,6 +9445,13 @@ let cards = [
94459445
imageLink: './Art/wasiqs-classics/snow.gif',
94469446
author: 'Wasiq Khan',
94479447
githubLink: 'https://github.com/wasiqs-classics'
9448+
},
9449+
{
9450+
artName: 'poltu',
9451+
pageLink: './Art/poltu/artmotion index.html',
9452+
imageLink: './Art/poltu/world.gif',
9453+
author: 'neeshat',
9454+
githubLink: 'https://github.com/neeshat060708'
94489455
}
94499456
];
94509457

text.readme

Whitespace-only changes.

0 commit comments

Comments
 (0)