forked from craic/CSS3_webkit_demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mask.html
52 lines (39 loc) · 1.16 KB
/
mask.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
<!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'>
<style type="text/css" media="screen">
</style>
</head>
<body>
<div id='header'>
<a href='index.html' class='banner'>CSS3 Webkit Demos</a>
-webkit-mask
</div>
<div id='main'>
<p>The -webkit-mask series of properties are used to control the visible portion, size and shape of images using mask images.</p>
<p style='color: blue'>A panel with simple examples to go here...</p>
<ul>
<li>-webkit-mask
<li>-webkit-mask-attachment
<li>-webkit-mask-box-image
<p><a href="mask_box_image_demo.html">Demo of masking with a circular mask image</a></p>
<li>-webkit-mask-clip
<li>-webkit-mask-composite
<li>-webkit-mask-image
<li>-webkit-mask-position
<li>-webkit-mask-position-x
<li>-webkit-mask-position-y
<li>-webkit-mask-repeat
<li>-webkit-mask-size
</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>