aboutsummaryrefslogtreecommitdiffstats
path: root/uiframe-iui/src/main/resources/webroot/vendor/ict/dashboard-jq/assets/css/transition.css
blob: 6877bc08c4b5aa7c6bf4649736d8bb0ce4ed4763 (plain)
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
#cf5 {
    position: relative;
    height: 32px;
    width: 32px;
    margin: 5px;
    margin-bottom: 0px;
    cursor: pointer;
    display: inline-block;
}

#cf5 img {
    position: absolute;
    left: 0;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

#cf5 img.top {
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    filter: alpha(opacity=0);
    opacity: 0;

}

/*
#cf5:hover img.top, #cf5.hover_effect img.top {
opacity:1;
-webkit-transform:scale(1,1);
-moz-transform:scale(1,1);
-o-transform:scale(1,1);
transform:scale(1,1);
}
*/
#cf5 img.scale {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

/*
#cf5:hover img.bottom, #cf5.hover_effect img.bottom {
filter: alpha(opacity=0);
-webkit-transform:rotate(360deg) scale(0,0);
-moz-transform:rotate(360deg) scale(0,0);
-o-transform:rotate(360deg) scale(0,0);
transform:rotate(360deg) scale(0,0);
}
*/
#cf5 img.rotate {
    filter: alpha(opacity=0);
    -webkit-transform: rotate(360deg) scale(0, 0);
    -moz-transform: rotate(360deg) scale(0, 0);
    -o-transform: rotate(360deg) scale(0, 0);
    transform: rotate(360deg) scale(0, 0);
}