美文网首页
纯CSS实现一个3D按钮

纯CSS实现一个3D按钮

作者: Hi小胡 | 来源:发表于2018-02-24 11:23 被阅读50次

    效果:

    代码:

    html:

    <div class="btn">3D</div>
    

    css:

    body{
      background:#229FFD;
    }
    .btn{
      font-weight:bold;
      font-size:25px;
      background:#fff;
      display:inline-block;
      width:100px;
      height:100px;
      text-align:center;
      line-height:100px;
      border-radius:100%;
      margin:50px;
      box-shadow:
        0 10px 0 #e0e0e0,
        0 15px 2px rgba(0,0,0,0.2);
      cursor:pointer;
      transition:all 0.2s;
    }
    .btn:active{
      transform:translateY(8px);
      box-shadow:
        0 2px 0 #e0e0e0,
        0 4px 2px rgba(0,0,0,0.3);
    }
    

    相关文章

      网友评论

          本文标题:纯CSS实现一个3D按钮

          本文链接:https://www.haomeiwen.com/subject/cirqxftx.html