forked from craic/CSS3_webkit_demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (50 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<title>CSS3 Webkit Demos</title>
<link href="main.css" media="all" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Muli' rel='stylesheet' type='text/css'>
</head>
<body>
<div id='header'>
<a href='index.html' class='banner'>CSS3 Webkit Demos</a>
</div>
<div id='main'>
<h2>The -webkit- extensions that are available in CSS3 allow you to create dramatic visual effects in web pages.</h2>
<h2>This site aims to provide simple, clean examples of these that you can incorporate into your own pages.</h2>
<h2>Main Webkit Categories</h2>
<ul>
<li><a href="mask.html">-webkit-mask</a>
<p>Modify the visible size and shape of images using masks</p>
<li><a href="transform.html">-webkit-transform</a>
<p>Modify the shape, position and rotation of elements</p>
<li><a href="perspective.html">-webkit-perspective</a>
<p>Modify the user viewpoint of three dimensional scenes</p>
<li><a href="transition.html">-webkit-transition</a>
<p>Animate an object as it changes from one state to another
<li><a href="animation.html">-webkit-animation</a>
<p>Animate objects more fully with keyframes
</ul>
<h2>CSS3 References</h2>
<ul>
<li><a href="http://developer.apple.com/library/safari/navigation/">Apple Safari Documentation</a>
<li><a href="http://www.w3.org/Style/CSS/">W3C CSS Documentation</a>
</ul>
<h2>Other CSS3 webkit examples</h2>
<ul>
<li><a href="http://playground.html5rocks.com/">HTML5Rocks Playground</a>
</ul>
<h2 style='color: red; background: #fec'>Google HTML5 Hackathon </h2>
<ul>
<li><a href="design_ideas.html">Design Ideas</a>
<p>Some initial ideas for this project ...</p>
<li><a href="https://github.com/craic">Craic GitHub page</a>
</ul>
</div>
<div id='footer'>
Text and Code is released under the terms of the MIT license
<a href="contributors.html">Contributors to this site</a>
</div>
</body>
</html>