中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

CSS3如何實現白色質感3D按鈕特效

發布時間:2022-03-08 10:56:41 來源:億速云 閱讀:116 作者:小新 欄目:web開發

這篇文章給大家分享的是有關CSS3如何實現白色質感3D按鈕特效的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

  使用方法

  HTML結構

  <div class="grid">

  <button><span>Normal</span></button>

  <button></button>

  <button class="icon">

  <svg width="626" height="512" viewBox="0 0 626 512" xmlns=

  <path fill="currentColor" d="M64 166Q115 115 180 89 244 63 313 63 382 63 447 89 511 115 562 166L528 200Q484 156 429 134 373 111 313 111 253 111 197 134 141 156 98 200L64 166ZM132 234Q169 197 216 178 263 159 313 159 363 159 410 178 457 197 494 234L460 268Q430 238 392 223 354 207 313 207 272 207 234 223 195 238 166 268L132 234ZM200 302Q223 279 252 267 281 255 313 255 345 255 374 267 403 279 426 302L392 335Q376 319 355 311 334 303 313 303 291 303 271 311 250 319 234 335L200 302ZM267 369Q287 351 313 351 339 351 358 369L313 415 267 369Z"></path>

  </svg>

  </button>

  <div class="button" role="button"><span>Not focusable</span></div>

  <div class="button" role="button"></div>

  <div class="button icon" role="button">

  <svg width="626" height="512" viewBox="0 0 626 512" xmlns=

  <path fill="currentColor" d="M64 166Q115 115 180 89 244 63 313 63 382 63 447 89 511 115 562 166L528 200Q484 156 429 134 373 111 313 111 253 111 197 134 141 156 98 200L64 166ZM132 234Q169 197 216 178 263 159 313 159 363 159 410 178 457 197 494 234L460 268Q430 238 392 223 354 207 313 207 272 207 234 223 195 238 166 268L132 234ZM200 302Q223 279 252 267 281 255 313 255 345 255 374 267 403 279 426 302L392 335Q376 319 355 311 334 303 313 303 291 303 271 311 250 319 234 335L200 302ZM267 369Q287 351 313 351 339 351 358 369L313 415 267 369Z"></path>

  </svg>

  </div>

  <button disabled="disabled"><span>Disabled</span></button>

  <button disabled="disabled"></button>

  <button class="icon" disabled="disabled">

  <svg width="626" height="512" viewBox="0 0 626 512" xmlns=

  <path fill="currentColor" d="M64 166Q115 115 180 89 244 63 313 63 382 63 447 89 511 115 562 166L528 200Q484 156 429 134 373 111 313 111 253 111 197 134 141 156 98 200L64 166ZM132 234Q169 197 216 178 263 159 313 159 363 159 410 178 457 197 494 234L460 268Q430 238 392 223 354 207 313 207 272 207 234 223 195 238 166 268L132 234ZM200 302Q223 279 252 267 281 255 313 255 345 255 374 267 403 279 426 302L392 335Q376 319 355 311 334 303 313 303 291 303 271 311 250 319 234 335L200 302ZM267 369Q287 351 313 351 339 351 358 369L313 415 267 369Z"></path>

  </svg>

  </button>

  </div>

  CSS樣式

  {

  from {

  box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 10px 0px rgba(0, 0, 250, 0.6);

  }

  to {

  box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 3px #CECFD1;

  }

  }

  @keyframes active {

  from {

  box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 10px 0px rgba(0, 0, 250, 0.6);

  }

  to {

  box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 3px #CECFD1;

  }

  }

  *,

  *:before,

  *:after {

  box-sizing: border-box;

  }

  body {

  margin: 0;

  padding: 30px;

  background: #f8f8f8;

  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  }

  .grid {

  max-width: 400px;

  margin: 50px auto;

  display: grid;

  grid-template-columns: 150px 150px 50px;

  align-items: center;

  justify-content: center;

  grid-gap: 40px 25px;

  }

  button,

  [role="button"] {

  -webkit-appearance: none;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  display: flex;

  align-items: center;

  justify-content: center;

  outline: none;

  cursor: pointer;

  width: 150px;

  height: 50px;

  background-image: linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%);

  border-radius: 30px;

  border: 1px solid #8F9092;

  box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 0 #CECFD1;

  transition: all 0.2s ease;

  font-family: "Source Sans Pro", sans-serif;

  font-size: 14px;

  font-weight: 600;

  color: #606060;

  text-shadow: 0 1px #fff;

  }

  button::-moz-focus-inner,

  [role="button"]::-moz-focus-inner {

  border: 0;

  }

  button > *,

  [role="button"] > * {

  transition: -webkit-transform 0.2s ease;

  transition: transform 0.2s ease;

  transition: transform 0.2s ease, -webkit-transform 0.2s ease;

  }

  button:hover:not([disabled]),

  [role="button"]:hover:not([disabled]) {

  box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 3px #CECFD1;

  }

  button:hover:not([disabled]) > *,

  [role="button"]:hover:not([disabled]) > * {

  -webkit-transform: scale(0.975);

  transform: scale(0.975);

  }

  button:focus:not(:active),

  [role="button"]:focus:not(:active) {

  -webkit-animation: active 0.9s alternate infinite;

  animation: active 0.9s alternate infinite;

  outline: none;

  }

  button:active:not([disabled]),

  [role="button"]:active:not([disabled]) {

  box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 5px 3px #999, inset 0 0 30px #aaa;

  }

  button:active:not([disabled]) > *,

  [role="button"]:active:not([disabled]) > * {

  -webkit-transform: scale(0.95);

  transform: scale(0.95);

  }

  button:disabled,

  [role="button"]:disabled {

  opacity: 0.6;

  cursor: not-allowed;

  }

  button.icon,

  [role="button"].icon {

  width: 50px;

  }

  button.icon svg,

  [role="button"].icon svg {

  margin-top: 3px;

  width: 30px;

  height: 30px;

  }

感謝各位的閱讀!關于“CSS3如何實現白色質感3D按鈕特效”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

涟水县| 贵德县| 泽普县| 安丘市| 牙克石市| 临湘市| 巴青县| 华宁县| 曲阜市| 如皋市| 延吉市| 梁河县| 开化县| 邛崃市| 迁西县| 云和县| 敦煌市| 沿河| 汨罗市| 夏河县| 彰化市| 磐安县| 昌邑市| 贞丰县| 潼关县| 丰顺县| 远安县| 淅川县| 青田县| 金平| 郸城县| 休宁县| 尉犁县| 甘孜县| 临沂市| 读书| 盐津县| 寿光市| 闻喜县| 金堂县| 明水县|