Animated Blur Effect Button #89

CSS Animated blur effect button

Adding these style CSS buttons to your website is easier than you think. Simply copy and paste the CSS code provided with each button design into your stylesheet

Preview Button Style

You can view the default style of buttons, the disabled state mode style of buttons, and the full-width block style of the button here. Some buttons style may not display in full width format

Button style

Disabled style

Full width block style

Button Source Code HTML and CSS

Click the button below to download the source code or edit it live.
To copy this click on the icon at the top right of the code box
Button HTML
<button class="btn-89">
    <span class="circle_89"></span>
    <span class="circle_89"></span>
    <span class="button_text_89">Button 89</span>
</button>
Button CSS
.btn-89 {
    width: 150px;
    height: 55px;
    transition: all 0.2s;
    position: relative;
    background: none;
    outline: none;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    padding: 0;
}

.button_text_89 {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #b6b6b6;
}

.circle_89 {
    width: 20px;
    height: 20px;
    background: radial-gradient(#ff0000, #e600ff);
    border-radius: 50%;
    position: absolute;
    animation: move_up_89 2s ease-in infinite alternate-reverse;
}

.circle_89:nth-child(1) {
    top: 8px;
    left: 7px;
}

.circle_89:nth-child(2) {
    bottom: 0px;
    right: 0px;
    animation-name: move_down_89;
}

@keyframes move_up_89 {
    100% {
        transform: translateY(-10px);
    }
}

@keyframes move_down_89 {
    100% {
        transform: translateY(5px);
    }
}

/*** disabled style ***/
.btn-89:disabled {
    pointer-events: none;
    opacity: .65;
    color: #7e7e7e;
    background: #dcdcdc;
    box-shadow: none;
    border-radius: 8px;
}

.btn-89:disabled .circle_89 {
    animation: none;
}

.btn-89:disabled .button_text_89 {
    color: #7e7e7e;
}

.btn-89:disabled .circle_89 {
    background: radial-gradient(#6c6c6c, #6c6c6c);
}