美文网首页
css3 loading按钮

css3 loading按钮

作者: 村长很忙 | 来源:发表于2017-02-21 10:56 被阅读228次
    <a  class="xx-btn loading"></a>
            /* 按钮loading */
    a[class*=-btn].loading, 
    label[class*=-btn].loading {
        position: relative;
    }
    a[class*=-btn].loading::first-line, 
    label[class*=-btn].loading::first-line {
        color: transparent;
    }
    a[class*=-btn].loading::before, 
    label[class*=-btn].loading::before {
        width: 4px; height: 4px;
        margin: auto;
        content: '';
        -webkit-animation: spinZoom 1s steps(8) infinite;
        animation: spinZoom 1s steps(8) infinite;
        border-radius: 100%;
        box-shadow: 0 -10px 0 1px currentColor, 10px 0 currentColor, 0 10px currentColor, -10px 0 currentColor, -7px -7px 0 .5px currentColor, 7px -7px 0 1.5px currentColor, 7px 7px currentColor, -7px 7px currentColor;
        /* center */
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
    }
    /* loading动画 */
    @-webkit-keyframes spinZoom {
        0% {
            -webkit-transform: scale(.75) rotate(0);
        }
        100% {
            -webkit-transform: scale(.75) rotate(360deg);
        }
    }
    @keyframes spinZoom {
        0% {
            transform: scale(.75) rotate(0);
        }
        100% {
            transform: scale(.75) rotate(360deg);
        }
    }
    

    相关文章

      网友评论

          本文标题: css3 loading按钮

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