九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
無需圖片,使用 CSS3 實(shí)現(xiàn)圓角按鈕
首先來看看效果圖:

HTML 代碼就這么簡(jiǎn)單:

1<a href="#" class="button green">button</a>
2 
3<a href="#" class="button blue">button</a>
4<a href="#" class="button gray">button</a>

如果沒有 CSS ,那么上面的 HTML 執(zhí)行起來是這樣的:

開始 CSS3 的編寫:

1.button {
2    display: inline-block;
3    positionrelative;
4    margin10px;
5    padding0 20px;
6    text-aligncenter;
7    text-decorationnone;
8    fontbold 12px/25px Arialsans-serif;
9}

一些不同顏色的按鈕樣式:

01.green {
02    color#3e5706;
03    background#a5cd4e;
04}
05 
06/* Blue Color */
07 
08.blue {
09    color#19667d;
10    background#70c9e3;
11}
12 
13/* Gray Color */
14 
15.gray {
16    color#515151;
17    background#d3d3d3;
18}

到這一步后按鈕看起來是這樣的:

接下來開始用 CSS 處理圓角:

01.button {
02    display: inline-block;
03    positionrelative;
04    margin10px;
05    padding0 20px;
06    text-aligncenter;
07    text-decorationnone;
08    fontbold 12px/25px Arialsans-serif;
09 
10    text-shadow1px 1px 1px rgba(255,255,255, .22);
11 
12    -webkit-border-radius: 30px;
13    -moz-border-radius: 30px;
14    border-radius: 30px;
15 
16    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0, .29), inset 1px 1px 1px rgba(255,255,255, .44);
17    -moz-box-shadow: 1px 1px 1px rgba(0,0,0, .29), inset 1px 1px 1px rgba(255,255,255, .44);
18    box-shadow: 1px 1px 1px rgba(0,0,0, .29), inset 1px 1px 1px rgba(255,255,255, .44);
19 
20    -webkit-transition: all 0.15s ease;
21    -moz-transition: all 0.15s ease;
22    -o-transition: all 0.15s ease;
23    -ms-transition: all 0.15s ease;
24    transition: all 0.15s ease;
25}

現(xiàn)在的按鈕圓潤(rùn)多了,看看:

還不夠啊,沒有立體效果,再完善完善:

01/* Green Color */
02 
03.green {
04    color#3e5706;
05 
06    background#a5cd4e/* Old browsers */
07    background: -moz-linear-gradient(top,  #a5cd4e 0%#6b8f1a 100%); /* FF3.6+ */
08    background: -webkit-gradient(linear, left topleft bottom, color-stop(0%,#a5cd4e), color-stop(100%,#6b8f1a)); /* Chrome,Safari4+ */
09    background: -webkit-linear-gradient(top,  #a5cd4e 0%,#6b8f1a 100%); /* Chrome10+,Safari5.1+ */
10    background: -o-linear-gradient(top,  #a5cd4e 0%,#6b8f1a 100%); /* Opera 11.10+ */
11    background: -ms-linear-gradient(top,  #a5cd4e 0%,#6b8f1a 100%); /* IE10+ */
12    background: linear-gradient(top,  #a5cd4e 0%,#6b8f1a 100%); /* W3C */
13}
14 
15/* Blue Color */
16 
17.blue {
18    color#19667d;
19 
20    background#70c9e3/* Old browsers */
21    background: -moz-linear-gradient(top,  #70c9e3 0%#39a0be 100%); /* FF3.6+ */
22    background: -webkit-gradient(linear, left topleft bottom, color-stop(0%,#70c9e3), color-stop(100%,#39a0be)); /* Chrome,Safari4+ */
23    background: -webkit-linear-gradient(top,  #70c9e3 0%,#39a0be 100%); /* Chrome10+,Safari5.1+ */
24    background: -o-linear-gradient(top,  #70c9e3 0%,#39a0be 100%); /* Opera 11.10+ */
25    background: -ms-linear-gradient(top,  #70c9e3 0%,#39a0be 100%); /* IE10+ */
26    background: linear-gradient(top,  #70c9e3 0%,#39a0be 100%); /* W3C */
27}
28 
29/* Gray Color */
30 
31.gray {
32    color#515151;
33 
34    background#d3d3d3/* Old browsers */
35    background: -moz-linear-gradient(top,  #d3d3d3 0%#8a8a8a 100%); /* FF3.6+ */
36    background: -webkit-gradient(linear, left topleft bottom, color-stop(0%,#d3d3d3), color-stop(100%,#8a8a8a)); /* Chrome,Safari4+ */
37    background: -webkit-linear-gradient(top,  #d3d3d3 0%,#8a8a8a 100%); /* Chrome10+,Safari5.1+ */
38    background: -o-linear-gradient(top,  #d3d3d3 0%,#8a8a8a 100%); /* Opera 11.10+ */
39    background: -ms-linear-gradient(top,  #d3d3d3 0%,#8a8a8a 100%); /* IE10+ */
40    background: linear-gradient(top,  #d3d3d3 0%,#8a8a8a 100%); /* W3C */
41}

現(xiàn)在爽了,漂亮了,你喜歡這樣的按鈕嗎?

為了讓按鈕更大一點(diǎn),我們?cè)黾恿藗€(gè) big 樣式:

1<a href="#" class="button big green">sign in <span>One minute</span></a>
2<a href="#" class="button big blue">sign in <span>One minute</span></a>
3 
4<a href="#" class="button big gray">sign in <span>One minute</span></a>

01/* Big Button Style */
02 
03.big {
04    padding0 40px;
05    padding-top10px;
06    height45px;
07    text-transformuppercase;
08    fontbold 20px/22px Arialsans-serif;
09}
10 
11.big span {
12    displayblock;
13    text-transformnone;
14    fontitalic normal 12px/18px Georgia, sans-serif;
15    text-shadow1px 1px 1px rgba(255,255,255, .12);
16}

大按鈕的效果:

我們還需要處理下當(dāng)鼠標(biāo)移到按鈕上方時(shí)顯示不同的效果:

01.button:hover {
02    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.29), inset 0px 0px 2px rgba(0,0,0, .5);
03    -moz-box-shadow: 1px 1px 1px rgba(0,0,0,.29), inset 0px 0px 2px rgba(0,0,0, .5);
04    box-shadow: 1px 1px 1px rgba(0,0,0,.29), inset 0px 0px 2px rgba(0,0,0, .5);
05}
06.button:active {
07    -webkit-box-shadow: inset 0px 0px 3px rgba(0,0,0, .8);
08    -moz-box-shadow: inset 0px 0px 3px rgba(0,0,0, .8);
09    box-shadow: inset 0px 0px 3px rgba(0,0,0, .8);
10}

效果如下:

好了,完美的CSS3按鈕解決方案。

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
HTML5+CSS3 表格設(shè)計(jì)(Table)
一些上流的CSS3圖片樣式 | CSS | 前端觀察
CSS3 box-shadow 效果大全(內(nèi)陰影,外陰影,三邊陰影,雙邊陰影,單邊陰影,細(xì)線描邊…)...
Create a Slick CSS3 Button with box
使用HTML 5和CSS3制作登錄頁面完整步驟
超酷的CSS3制作漂亮圓角漸變風(fēng)格按鈕
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服