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

溫馨提示×

溫馨提示×

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

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

怎么用css實現button按鈕的點擊效果

發布時間:2022-12-15 10:13:39 來源:億速云 閱讀:133 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“怎么用css實現button按鈕的點擊效果”,內容詳細,步驟清晰,細節處理妥當,希望這篇“怎么用css實現button按鈕的點擊效果”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

1.首先創建一個html文件。

2.在html文件中添加html代碼架構。

<!DOCTYPE html>
<html>
    <head>
<meta charset="UTF-8">
        <title>按鈕點擊效果</title>
    </head>
    <body>
    </body>
</html>

3.然后在html代碼架構中的body標簽里面使用button標簽設計一個按鈕。

<button class="primary-btn">主要按鈕</button>

4.在html架構中的html標簽里面添加style標簽并寫入css樣式代碼來實現按鈕點擊效果。

<style>
.primary-btn {
  font-size: 14px;
  color: #fff;
  height: 44px;
  padding: 0 15px;
  background-color: #07c160;
  border: 1px solid #07c160;
  line-height: 1.2;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
  outline: none;
  position: relative;
}
.primary-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #000;
  border: inherit;
  border-color: #000;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  opacity: 0;
  content: ' ';
}
.primary-btn:active::before {
  opacity: 0.1;
}
</style>

5.最后可通過瀏覽器方式閱讀html文件查看設計效果。

完整示例代碼如下:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>按鈕點擊效果</title> 
<style>
.primary-btn {
  font-size: 14px;
  color: #fff;
  height: 44px;
  padding: 0 15px;
  background-color: #07c160;
  border: 1px solid #07c160;
  line-height: 1.2;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
  outline: none;
  position: relative;
}
.primary-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #000;
  border: inherit;
  border-color: #000;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  opacity: 0;
  content: ' ';
}
.primary-btn:active::before {
  opacity: 0.1;
}
</style>
</head>
<body>
  <button class="primary-btn">主要按鈕</button>
</body>
</html>

讀到這里,這篇“怎么用css實現button按鈕的點擊效果”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

江永县| 沙田区| 乐陵市| 宜春市| 喜德县| 师宗县| 北流市| 天长市| 钟山县| 瑞昌市| 塔城市| 濮阳市| 合作市| 弋阳县| 紫云| 象山县| 互助| 延长县| 新巴尔虎左旗| 巴楚县| 高邑县| 郓城县| 灵台县| 阿荣旗| 山西省| 黄浦区| 阜宁县| 山阴县| 河北区| 淳化县| 岑溪市| 乐平市| 鞍山市| 凤翔县| 明光市| 饶阳县| 筠连县| 车险| 惠东县| 沽源县| 城口县|