-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (39 loc) · 1.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animation - HTML</title>
<style>
body {
background-repeat: no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
background-position: center;
}
@media (max-width: 650px) {
marquee img {
width: 50%;
}
}
@media (min-width: 1440px) {
marquee img {
width: 50%;
}
}
</style>
</head>
<body background="images/bg.jpg">
<marquee scrollamount="10%">
<img src="images/birds.gif" width="16%" />
</marquee>
<br><br><br><br><br><br><br><br><br><br><br><br>
<marquee direction="right" scrollamount="25">
<img src="images/1.gif" width="25%" />
<img src="images/2.gif" width="24%" />
<img src="images/3.gif" width="20%" />
<img src="images/4.gif" width="27%" />
</marquee>
</body>
</html>