-
Notifications
You must be signed in to change notification settings - Fork 0
/
toolbar.scss
81 lines (73 loc) · 1.26 KB
/
toolbar.scss
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
71
72
73
74
75
76
77
78
79
80
81
$ToolBar-size: 52px;
@import "mixin";
@mixin toolbar-item($pos,$hoverpos)
{
background-position: 0 $pos;
&:hover
{
background-position: 0 $hoverpos;
}
}
.ToolBar{
position: fixed;
left: 50%;
bottom: 5px;
margin-left: -$ToolBar-size/2;
}
.toolbar-layer,.ToolBar-item
{
background-image: url(../img/toolbar.png);
background-repeat: no-repeat;
}
.ToolBar-item{
display: block;
position: relative;
width: $ToolBar-size;
height: $ToolBar-size;
margin-top: 1px;
@include transisition(background-position 1s);
&:hover
{
.toolbar-layer
{
@include opacity(1);
@include scale(1);
}
}
}
.ToolBar-item-weixin{
position: relative;
@include toolbar-item(-798px,-860px);
.toolbar-layer
{
height: 212px;
background-position: 0 0;
}
}
.ToolBar-item-feedback{
position: relative;
@include toolbar-item(-426px,-488px);
}
.ToolBar-item-app{
position: relative;
@include toolbar-item(-550px,-612px);
.toolbar-layer
{
height: 194px;
background-position: 0 -222px;
}
}
.ToolBar-item-top{
position: relative;
@include toolbar-item(-674px,-736px);
}
.toolbar-layer{
position: absolute;
right: $ToolBar-size;
bottom: 0px;
width: 172px;
@include opacity(1);
@include transform-origin(99% 99%);
@include scale(0.01);
bottom: 1px;
}