-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (66 loc) · 1.97 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-063933E3C2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-063933E3C2");
</script>
<title>Bouncing ball in CSS</title>
<link rel="canonical" href="https://evoluteur.github.io/bouncing-ball/" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Bouncing ball in CSS" />
<meta
name="keywords"
content="bouncing, ball, CSS, animated, animation, transition, fullscreen, sample, code"
/>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Overpass"
/>
<link rel="stylesheet" href="bball.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<meta name="description" content="CSS animation for a bouncing ball." />
<meta name="keywords" content="css animation bouncing ball" />
</head>
<body>
<div class="content">
<div id="traveler">
<div id="bouncer"></div>
</div>
<h1>
Bouncing ball in CSS <a href="index-javascript.html">or JavaScript</a>
</h1>
<p>
CSS animation for a bouncing ball (based on
<a
href="https://www.the-art-of-web.com/css/bouncing-ball-animation/"
rel="noopener"
target="_blank"
>article</a
>
from The Art of Web).
</p>
<p>
Code:
<a href="https://github.com/evoluteur/bouncing-ball"
>evoluteur/bouncing-ball</a
>
at GitHub.
</p>
<p>
<br />© 2020
<a href="https://evoluteur.github.io/">Olivier Giulieri</a>
</p>
</div>
</body>
</html>