温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

CSS3如何实现白色质感3D按钮特效

发布时间:2022-03-08 10:56:41 来源:亿速云 阅读:104 作者:小新 栏目: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