-
Notifications
You must be signed in to change notification settings - Fork 0
/
newindex.css
255 lines (226 loc) · 5.39 KB
/
newindex.css
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
*{
margin:0; padding:0;
}
body{
/*font:15px "microsoft yahei",serif; /* 英文字体多,适合用 Georgia 字体 */
font-weight:400;
overflow:hidden;
-webkit-font-smoothing:antialiased; /* 因为不是所有浏览器都支持,所以需要加浏览器内核 -webkit- */
-moz-font-smoothing:antialiased;
/*
font-smoothing : subpixel-antialiased | none | antialiased ;
是css3里设置字体的抗锯齿光滑度的属性 可以让文字看起来更光滑
none用于小像素的文本、subpixel-antialiased浏览器默认的、antialiased反锯齿。
*/
}
a{
text-decoration:none;
}
.clr{
width:0;
height:0;
overflow:hidden;
clear:both;
}
.s-window{
width:100%;
height:100%;
position:relative;
left:0;
top:0;
overflow: hidden;
/*font-family:"Josefin Slab", "Myriad Pro", Arial, sans-serif;*/
}
.s-window > input{
width:10%;
height:40px;
line-height:40px;
position:fixed;
bottom:0;
cursor:pointer;
/*
设置鼠标指针指上来之后的指针形状,pointer为手型。
*/
}
.s-window > input{
/*
隐藏一个元素的4中方法
display:none; 元素隐藏却不占位
position:absolute; left:-99999px; 元素隐藏却不占位
对此案例,以上两种方式不适用
visibility:hidden; 元粗隐藏,但是占位
opacity:0; 元素存在,透明度变成0
*/
z-index: 999;
/*
因为需要 先选中input才能触发a,所以input的优先级应该高于a
html中,后面的标签的优先级高于前面的标签
*/
}
/*
+ 相邻兄弟选择器, + a 表示选择后面相邻的一个标签a
~ 相邻兄弟选择器, ~ a 表示选择后面相邻的所有标签a
*/
#st-control-1{
left:0%;
}
#st-control-2{
left:10%;
}
.s-scroll{
-webkit-backface-visibility:hidden;
-moz-backface-visibility:hidden;
-o-backface-visibility:hidden;
-ms-backface-visibility:hidden;
backface-visibility:hidden;
/*
backface-visibility : visible | hidden ;
定义元素不面向屏幕时是否可见。
取值 visible 背面是可见的, hidden 背面是不可见的。
*/
}
/* 内容区域的css */
.s-scroll,
.s-panel{
width:100%;
height:100%;
position:relative;
}
.s-scroll{
left:0;
top:0;
-webkit-transform:translate3d(0,0,0);
-moz-transform:translate3d(0,0,0);
-o-transform:translate3d(0,0,0);
-ms-transform:translate3d(0,0,0);
transform:translate3d(0,0,0);
/*
transform 为 css3属性,用于元素旋转,倾斜等转换。
*/
-webkit-transition:all 0.6s ease-in-out;
-moz-transition:all 0.6s ease-in-out;
-o-transition:all 0.6s ease-in-out;
-ms-transition:all 0.6s ease-in-out;
transition:all 0.6s ease-in-out;
/*
transition 改变谁就定义在谁的上面。
用于实现页面过渡的动画效果。
第一个值表示 对那个属性进行过渡,all表示对所有属性过渡。
第二个值表示 动画过渡所用时间,过渡的时间为0.6s。
第三个值表示 过渡效果,ease-in-out表示由慢开始,变快,最后变慢。
*/
}
.s-panel{
/*background:#222;*/
overflow:hidden;
}
#s-panel-right{
position:absolute;
top:0;
left:100%;
}
.st-desc{
width:300px;
height:300px;
background:#fff;
position:absolute;
left:50%;
top:0;
margin-left:-150px;
-webkit-transform:translateY(-50%) rotate(45deg);
-moz-transform:translateY(-50%) rotate(45deg);
-o-transform:translateY(-50%) rotate(45deg);
-ms-transform:translateY(-50%) rotate(45deg);
transform:translateY(-50%) rotate(45deg);
/*
或者使用如下方式也可以
transform:rotate(45deg);
margin-top:-150px;
*/
}
/* [] 属性选择器
[data-icon]:after{
content:attr(data-icon);
width:300px;
height:300px;
color:#222;
font-size:150px;
text-align:center;
line-height:300px;
position:absolute;
left:50%;
top:50%;
margin:-85px 0 0 -85px;
-webkit-transform:rotate(-45deg);
-moz-transform:rotate(-45deg);
-o-transform:rotate(-45deg);
-ms-transform:rotate(-45deg);
transform:rotate(-45deg);
font-family:"raphaelicons";
}
*/
/*.s-panel h2{
color:#39c;
font-size:54px;
line-height:54px;
font-weight:900;
text-align:center;
width:80%;
position:absolute;
left:10%;
top:50%;
margin-top:-40px;
}*/
.s-panel p{
position:absolute;
width:60%;
left:20%;
top:53%;
font-size:22px;
line-height:22px;
text-align:center;
/*color:#888;*/
color:#fff;
}
/* 最后的细节处理 */
.st-color{
background:#fff;
}
.st-color .st-desc
{
background:#222;
}
.st-color [data-icon]:after{
color:#fff;
}
.st-color p{
color:#222;
}
/*
响应式布局
and ( min-width: xxx px ) and ( max-width:xxx px ) 指定屏幕大小
@media screen and (max-width:520px){
.s-panel h2{
font-size:36px;
}
.s-panel p{
width:100%;
left:0;
margin-top:0px;
font-size:13px;
}
.s-window > a{
font-size:12px;
}
.st-desc{
width:120px;
height:120px;
margin-left:-60px;
}
[data-icon]:after{
font-size:60px;
top:25%;
left:25%;
}
}
*/