Google Plus Tip Buttons

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
<!DOCTYPE HTML>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <title>Google Plus Tip Buttons|w3cplus</title>
    <meta name="keywords" content="css3学习,css3属性详解,css3 transition,如何学好css3">
    <meta name="description" content="W3CPLUS是一个前端爱好者的家园,W3CPLUS努力打造最优秀的web 前端学习的站点。W3CPLUS力求原创,以一起学习,一起进步,共同分享为原则。W3CPLUS站提供了有关于css,css3,html,html5,jQuery,手机移动端的技术文档、DEMO、资源,与前端爱好者一起共勉。">
    <link rel="shortcut icon" href="http://www.w3cplus.com/sites/all/themes/marvin/favicon.ico">
    <link rel="stylesheet" type="text/css" href="http://www.w3cplus.com/demo/css3/base.css" media="all" />
    <link rel="stylesheet" type="text/css" href="css/style.css" media="all">
<style>
body {
     background: #c0c0c0;
}
.demo {
    width: 500px;
    margin: 50px auto;
}
.control_buttons li {
    display: inline-block;
    margin:0 10px 10px 0;
}
.icon {
    position: relative;
    display: inline-block;
    color: #545454;
    text-shadow:0 -1px 0 #282828,0 1px 1px #e1e1e1;
    padding: 8px 10px 4px;
    box-shadow: 0 1px 0 #f4f4f4 inset;
    border: 1px solid #7d7d7d;
    border-radius: 3px;
    background: -webkit-linear-gradient(top,#ececec,#bfbfbf);
    background: -moz-linear-gradient(top,#ececec,#bfbfbf);
    background: linear-gradient(top,#ececec,#bfbfbf);
}
.icon:hover {
    color: #545454;
    text-decoration:none;
    background: -webkit-linear-gradient(top,#f7f5f5,#c9c7c7);
    background: -moz-linear-gradient(top,#f7f5f5,#c9c7c7);
    background: linear-gradient(top,#f7f5f5,#c9c7c7);
}
.icon:hover span {
    max-height: 36px;
}
.icon span {
    position: absolute;
    left: -32px;
    top: 30px;
    display: block;
    overflow: hidden;
    max-height: 0;
    text-align: center;
    z-index: 2;
    -webkit-transition: max-height .3s linear;
       -moz-transition: max-height .3s linear;
            transition: max-height .3s linear;
}
.icon span em {
    display: block;
    width: 100px;
    line-height: 26px;
    font-style: normal;
    color: #fff;
    text-shadow:0 0 0 #fff;
    margin-top: 10px;
    background-color:#000;
}
.icon span em:after {
    position: absolute;
    left: 50%;
    top: 0;
    content: '';
    width: 1px;
    height: 1px;
    border: 5px solid transparent;
    border-bottom-color: #000;
    margin-left: -5px;
}
.icon:before,
    .icon:after,
    .search:after {
    font-family: 'icomoon';
    speak: none;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-size: 15px;
}
.icon1:before {
    content: "\23";
}
.icon2:before {
    content: "\21";
}
.icon3:before {
    content: "\22";
}
.icon4:before {
    content: "\24";
}
.icon5:before {
    content: "\25";
}
.icon6:before {
    content: "\26";
}
.icon7:before {
    content: "\27";
}
.icon8:before {
    content: "\28";
}
.icon9:before {
    content: "\29";
}
.icon10:before {
    content: "\2f";
}
.icon11:before {
    content: "\2a";
}
.icon12:before {
    content: "\2b";
}
.icon13:before {
    content: "\2c";
}
.icon14:before {
    content: "\2d";
}
.icon15:before {
    content: "\30";
}
.icon16:before {
    content: "\31";
}
.icon17:before {
    content: "\32";
}
.icon18:before {
    content: "\33";
}
.icon19:before {
    content: "\3a";
}
.icon20:before {
    content: "\36";
}
.icon21:before {
    content: "\37";
}
.icon22:before {
    content: "\38";
}
.icon23:before {
    content: "\39";
}
.icon24:before {
    content: "\4e";
}
.icon25:before {
    content: "\4f";
}
.icon26:before {
    content: "\50";
}
.icon27:before {
    content: "\51";
}
.icon28:before {
    content: "\54";
}
.icon29:before {
    content: "\44";
}
.icon30:before {
    content: "\52";
}
.icon31:before {
    content: "\4b";
}
.icon32:before {
    content: "\4a";
}
.icon33:before {
    content: "\33";
}
.icon34:before {
    content: "\34";
}
.icon35:before {
    content: "\35";
}
.icon36:before {
    content: "\27";
}
.icon37:before {
    content: "\2f";
}
.icon38:before {
    content: "\4c";
}
.icon39:before {
    content: "\41";
}
.icon40:before {
    content: "\42";
}
.icon41:before {
    content: "\3f";
}
.icon42:before {
    content: "\46";
}
.icon43:before {
    content: "\47";
}
.icon44:before {
    content: "\48";
}
.icon45:before {
    content: "\3d";
}
.icon46:before {
    content: "\3c";
}
.icon47:before {
    content: "\40";
}
.icon48:before {
    content: "\3e";
}
.arrow:after {
    content: "\53";
    margin-right: -3px;
}
 
@font-face {
    font-family: 'icomoon';
    src:url('fonts/icomoon.eot');
    src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
        url('fonts/icomoon.svg#icomoon') format('svg'),
        url('fonts/icomoon.woff') format('woff'),
        url('fonts/icomoon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}      
    </style>
 
</head>
<body>
<div class="wrap_top_nav">
    <nav id="top_nav">
        <ul class="inline-style clearfix">
            <li><a href="http://www.w3cplus.com" target="_blank">w3cplus</a></li>
            <li><a href="http://www.w3cplus.com/resources/css3-tutorial-and-case" target="_blank">css3详解教程</a></li>
            <li><a href="http://www.w3cplus.com/demos/list.html" target="_blank">css3实例</a></li>
            <li><a href="http://www.w3cplus.com/demo/tags/242.html" target="_blank">藤藤每日一练</a></li>
        </ul>
        <a id="read" href="http://www.w3cplus.com/demo/google-plus-tip-buttons.html" target="_blank">查看原文>></a>
    </nav>
</div>
<div class="page">
    <header id="header">
        <hgrounp class="white blank">
            <h1>Google Plus Tip Buttons</h1>
            <h2>作者:藤藤(如有更好建议或疑问请加群:1041263)<h2>
        </hgrounp>
    </header>
    <section class="demo">
        <ul class="control_buttons">
            <li>
                <a href="#" class="icon icon1">
                    <span><em>icon-Home</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon2">
                    <span><em>icon-Music</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon3">
                    <span><em>icon-Image</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon4">
                    <span><em>icon-Text</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon5">
                    <span><em>icon-File</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon6">
                    <span><em>icon-Bell</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon7">
                    <span><em>icon-Calendar</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon8">
                    <span><em>icon-Upload</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon9">
                    <span><em>icon-Download</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon10">
                    <span><em>icon-Set Up</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon11">
                    <span><em>icon-News</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon12">
                    <span><em>icon-Load</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon13">
                    <span><em>icon-Avatar</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon14">
                    <span><em>icon-Search</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon15">
                    <span><em>icon-Cake</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon16">
                    <span><em>icon-Rise</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon17">
                    <span><em>icon-Delete</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon18">
                    <span><em>icon-App</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon19">
                    <span><em>icon-Good</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon20">
                    <span><em>icon-Upload</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon21">
                    <span><em>icon-Download</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon22">
                    <span><em>icon-Link</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon23">
                    <span><em>icon-Like</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon24">
                    <span><em>icon-Phone</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon25">
                    <span><em>icon-Pad</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon26">
                    <span><em>icon-Computer</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon27">
                    <span><em>icon-Mouse</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon28">
                    <span><em>icon-Wifi</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon29">
                    <span><em>icon-Tencent</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon30">
                    <span><em>icon-Transform</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon31 arrow">
                    <span><em>select-Set Up</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon32 arrow">
                    <span><em>select-Set Up</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon33 arrow">
                    <span><em>select-Set Up</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon34 arrow">
                    <span><em>select-Set Up</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon35 arrow">
                    <span><em>select-Set Up</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon36 arrow">
                    <span><em>select-Set Up</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon37 arrow">
                    <span><em>select-Set Up</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon38">
                    <span><em>select-Set Up</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon39">
                    <span><em>Browser-Apple</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon40">
                    <span><em>browser-Window</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon41">
                    <span><em>Browser-Chrome</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon42">
                    <span><em>browser-IE</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon43">
                    <span><em>browser-Opera</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon44">
                    <span><em>browser-Net..</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon45">
                    <span><em>chat-...f</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon46">
                    <span><em>chat-f...</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon47">
                    <span><em>chat-git...</em></span>
                </a>
            </li>
            <li>
                <a href="#" class="icon icon48">
                    <span><em>chat-f...</em></span>
                </a>
            </li>
        </ul>
 
    </section>
    <section id="ad_w3cplus">
        <div class="grid-ad">
        <script type="text/javascript">
/*250*250,创建于2012-10-14-3*/
var cpro_id = "u1089145";
</script>
<script src="http://cpro.baidustatic.com/cpro/ui/c.js" type="text/javascript"></script>
        </div>
        <div class="grid-ad">
        <script type="text/javascript">
/*250*250,创建于2012-10-14-2*/
var cpro_id = "u1089141";
</script>
<script src="http://cpro.baidustatic.com/cpro/ui/c.js" type="text/javascript"></script>
        </div>
        <div class="grid-ad">
        <script type="text/javascript">
/*250*250,创建于2012-10-11*/
var cpro_id = "u1086065";
</script>
<script src="http://cpro.baidustatic.com/cpro/ui/c.js" type="text/javascript"></script>
        </div>
        <p><script type="text/javascript">
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F177319b798978621f83845b12c86fa29' type='text/javascript'%3E%3C/script%3E"));
</script>
</p>
    </section>
</div>
</body>
</html>