91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CSS按鈕怎么實現

發布時間:2022-02-25 10:52:37 來源:億速云 閱讀:125 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關CSS按鈕怎么實現,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

  例一:

  首先,我們將給出按鈕的一般樣式,包括其活動狀態。重要的是要注意相對定位,因為它將幫助我們稍后定位::before元素:

  CSS

  .a_demo_one{

  background-color:#ba2323;

  padding:10px;

  position:relative;

  font-family:'OpenSans',sans-serif;

  font-size:12px;

  text-decoration:none;

  color:#fff;

  border:solid1px#831212;

  background-image:linear-gradient(bottom,rgb(171,27,27)0%,rgb(212,51,51)100%);

  border-radius:5px;

  }

  .a_demo_one:active{

  padding-bottom:9px;

  padding-left:10px;

  padding-right:10px;

  padding-top:11px;

  top:1px;

  background-image:linear-gradient(bottom,rgb(171,27,27)100%,rgb(212,51,51)0%);

  }

  然后,我們使用::before偽元素創建灰色容器。使用絕對的定位來定位我們的元素:

  CSS

  .a_demo_one::before{

  background-color:#ccd0d5;

  content:"";

  display:block;

  position:absolute;

  width:100%;

  height:100%;

  padding:8px;

  left:-8px;

  top:-8px;

  z-index:-1;

  border-radius:5px;

  box-shadow:inset0px1px1px#909193,0px1px0px#fff;

  }

  例二:

  CSS

  .a_demo_two{

  background-color:#6fba26;

  padding:10px;

  position:relative;

  font-family:'OpenSans',sans-serif;

  font-size:12px;

  text-decoration:none;

  color:#fff;

  background-image:linear-gradient(bottom,rgb(100,170,30)0%,rgb(129,212,51)100%);

  box-shadow:inset0px1px0px#b2f17f,0px6px0px#3d6f0d;

  border-radius:5px;

  }

  .a_demo_two:active{

  top:7px;

  background-image:linear-gradient(bottom,rgb(100,170,30)100%,rgb(129,212,51)0%);

  box-shadow:inset0px1px0px#b2f17f,inset0px-1px0px#3d6f0d;

  color:#156785;

  text-shadow:0px1px1pxrgba(255,255,255,0.3);

  background:rgb(44,160,202);

  }

  由于偽元素的位置取決于其父元素,因此一旦父元素向下移動幾個像素,就必須向上移動具有相同像素數量的偽元素。

  CSS

  .a_demo_two::before{

  background-color:#072239;

  content:"";

  display:block;

  position:absolute;

  width:100%;

  height:100%;

  padding-left:2px;

  padding-right:2px;

  padding-bottom:4px;

  left:-2px;

  top:5px;

  z-index:-1;

  border-radius:6px;

  box-shadow:0px1px0px#fff;

  }

  .a_demo_two:active::before{

  top:-2px;

  }

  例三:

  我們要做的第一件事就是創造簡單的部分。在這里,你會注意到一個右邊距,這是為了補償偽元素的寬度,如果你想讓按鈕居中。

  .a_demo_three{

  background-color:#3bb3e0;

  font-family:'OpenSans',sans-serif;

  font-size:12px;

  text-decoration:none;

  color:#fff;

  position:relative;

  padding:10px20px;

  border-left:solid1px#2ab7ec;

  margin-left:35px;

  background-image:linear-gradient(bottom,rgb(44,160,202)0%,rgb(62,184,229)100%);

  border-top-right-radius:5px;

  border-bottom-right-radius:5px;

  box-shadow:inset0px1px0px#2ab7ec,0px5px0px0px#156785,0px10px5px#999;

  }

  .a_demo_three:active{

  top:3px;

  background-image:linear-gradient(bottom,rgb(62,184,229)0%,rgb(44,160,202)100%);

  box-shadow:inset0px1px0px#2ab7ec,0px2px0px0px#156785,0px5px3px#999;

  }

  然后是偽元素:

  .a_demo_three::before{

  content:"·";

  width:35px;

  max-height:29px;

  height:100%;

  position:absolute;

  display:block;

  padding-top:8px;

  top:0px;

  left:-36px;

  font-size:16px;

  font-weight:bold;

  color:#8fd1ea;

  text-shadow:1px1px0px#07526e;

  border-right:solid1px#07526e;

  background-image:linear-gradient(bottom,rgb(10,94,125)0%,rgb(14,139,184)100%);

  border-top-left-radius:5px;

  border-bottom-left-radius:5px;

  box-shadow:inset0px1px0px#2ab7ec,0px5px0px0px#032b3a,0px10px5px#999;

  }

  .a_demo_three:active::before{

  top:-3px;

  box-shadow:inset0px1px0px#2ab7ec,0px5px0px0px#032b3a,1px1px0px0px#044a64,2px2px0px0px#044a64,2px5px0px0px#044a64,6px4px2px#0b698b,0px10px5px#999;

  }


CSS按鈕怎么實現

關于“CSS按鈕怎么實現”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

五寨县| 郓城县| 库尔勒市| 东乌| 巴林左旗| 当雄县| 印江| 论坛| 台南县| 镇康县| 六枝特区| 定安县| 榆林市| 桂东县| 繁昌县| 循化| 昆明市| 梧州市| 伊春市| 四会市| 米易县| 华阴市| 安康市| 堆龙德庆县| 独山县| 安乡县| 鄂托克前旗| 乐清市| 方正县| 通渭县| 梧州市| 长宁区| 麟游县| 老河口市| 武川县| 雷山县| 邹平县| 南投市| 龙岩市| 凯里市| 桃园县|