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

溫馨提示×

css如何實現button按鈕的點擊效果

css
小新
6576
2021-04-20 17:14:15
欄目: 編程語言

css實現button按鈕點擊效果的方法:1、創建html文件;2、添加html代碼架構;3、在body標簽中使用button標簽設計一個按鈕;4、添加script標簽并寫入css樣式代碼來實現按鈕點擊效果;5、通過瀏覽器方式查看設計效果。


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>


0
金华市| 安福县| 镇江市| 喀喇沁旗| 略阳县| 民权县| 上犹县| 石林| 明溪县| 伊吾县| 海城市| 翁源县| 临夏市| 灵丘县| 巢湖市| 内黄县| 高唐县| 壤塘县| 惠水县| 陆丰市| 德格县| 德清县| 枞阳县| 平湖市| 栾川县| 霍邱县| 沿河| 紫阳县| 蒙山县| 合肥市| 长子县| 通山县| 绍兴县| 西宁市| 奉化市| 吉木萨尔县| 乐平市| 伽师县| 连云港市| 平利县| 靖远县|