Home >Web Front-end >CSS Tutorial >css water wave button special effect

css water wave button special effect

韦小宝
韦小宝Original
2017-11-20 10:47:322877browse

css Water wave button special effect, source code is provided for free. Students who are interested in css can go and study it~ This is another improvement for our css technology An improvement

css water wave button special effect

Code:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>PHP中文网</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)">PHP中文网</a>
    </body>
</html>

The above are all the css water wave button effects. For more articles about css, please go to PHP中文网Search

Related recommendations:

css mouseover animation

css ripple animation

css, js dice lottery source code

The above is the detailed content of css water wave button special effect. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn