This repository was archived by the owner on Sep 6, 2023. It is now read-only.
File tree 5 files changed +72
-0
lines changed
5 files changed +72
-0
lines changed Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -9445,6 +9445,13 @@ let cards = [
9445
9445
imageLink : './Art/wasiqs-classics/snow.gif' ,
9446
9446
author : 'Wasiq Khan' ,
9447
9447
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'
9448
9455
}
9449
9456
] ;
9450
9457
You can’t perform that action at this time.
0 commit comments