css水波按鈕特效

來源:互聯網
上載者:User
css水波按鈕特效,免費提供源碼,對 css有興趣的同學可以去研究研究哈~這對我們的 css技術又是一種提升

代碼:

<!DOCTYPE html><html>    <head>        <meta charset="UTF-8">        <title>topic.alibabacloud.com</title>        <style>             a{                text-decoration:none;                user-select:none;                position: relative;                display: block;                margin: 100px auto;                width:120px;                height:50px;                line-height:50px;                text-align:center;                border-radius:25px;                color:#fff;                font-size:16px;                cursor:pointer;                background-color: #ff8300;                box-shadow: 0 3px 9px 0 rgba(255, 131, 0, 0.35);                overflow: hidden;            }             a:after{                position: absolute;                content: "";                display: block;                margin: auto;                left: -40px;                top:-75px;                width: 200px;                height: 200px;                background: #ff8300;                border-radius: 50%;                opacity: 0;                transition: all 0.8s;            }             a:hover{                 background-color: #FF9D00;                 top:-2px;                 box-shadow: 0 5px 13px 0 rgba(255, 131, 0, 0.59);            }             a:active{                 background-color: #ff8300;                 top:0;                 box-shadow: 0 3px 9px 0 rgba(255, 131, 0, 0.35);            }             a:active:after{                width: 0;                height: 0;                left:60px;                top: 25px;                opacity: 1;                transition-duration: 0s;            }        </style>    </head>    <body>            <a href="javascript:void(0)">topic.alibabacloud.com</a>    </body></html>
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.