-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsection 1.txt
More file actions
43 lines (31 loc) · 1.2 KB
/
section 1.txt
File metadata and controls
43 lines (31 loc) · 1.2 KB
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
CUBIC BEZIER:
http://matthewlein.com/ceaser/
http://cubic-bezier.com/#.17,.67,.83,.67
ease Default value. Specifies a transition effect with a slow start, then fast, then end slowly (equivalent to cubic-bezier(0.25,0.1,0.25,1))
linear Specifies a transition effect with the same speed from start to end (equivalent to cubic-bezier(0,0,1,1))
ease-in Specifies a transition effect with a slow start (equivalent to cubic-bezier(0.42,0,1,1))
ease-out Specifies a transition effect with a slow end (equivalent to cubic-bezier(0,0,0.58,1))
ease-in-out Specifies a transition effect with a slow start and end (equivalent to cubic-bezier(0.42,0,0.58,1))
------------------------------------------------------------------------------------------------------------------------
TRANSFORM:
- rotate
- skew
- scale
- translate
- matrix
http://www.useragentman.com/IETransformsTranslator/
-------------------------------------------------------------------------------------------------------------------------
FILTERS:
Where is one of:
blur()
brightness()
contrast()
url()
drop-shadow()
grayscale()
hue-rotate()
invert()
opacity()
sepia()
custom() - "coming soon"
http://html5-demos.appspot.com/static/css/filters/index.html