Sample code for implementing a background gradient button using div+css3

Sample code for implementing a background gradient button using div+css3

As the demand for front-end pages continues to increase, some scenes require gradient background elements. This article uses div and new css3 attributes to implement a button with a gradient background, as follows:

1.background: linear-gradient The background is a gradient color attribute
2. Use the animation feature in CSS3 to change the background from left to right (color_move)
3. To achieve the gradient effect, extend the width of the background to 400%

Above code:

html:

<div class="btn_demo">
	<div class="text">Experience</div>
	<div class="arrow">»</div>
</div>

css:

@keyframes arrow_move {
   /* Start state */
    0% {
        left: 130px;
    }
	/* End status */
    100% {
        left: 140px;
    }
}
@keyframes color_move {
    /* Start state */
    0% {
        background-position: 0% 0%; /* horizontal position vertical position */
    }
    50% {
        background-position: 50% 0%;
    }
	/* End status */
    100% {
        background-position: 100% 0%;
    }
}
.btn_demo {
    width:180px;
    height:60px;
    border-radius: 10px;
    position: relative;
    background: linear-gradient( 90deg, #373d42 0%, #2679dd 50%, #373d42 100%);
    background-size: 400% 100%;
    animation: color_move 5s infinite ease-in-out alternate;
    cursor: pointer;
}
.btn_demo:hover {
    background: #2679dd;
}
.btn_demo:active {
    background: #373d42;
}
.btn_demo > .text {
    /* background: yellow; */
    width: 50px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}
.btn_demo > .arrow {
    /* background: green; */
    width: 20px;
    text-align: center;
    position: absolute;
    font-size: 30px;
    color: #fff;
    top: 46%;
    transform: translateY(-50%);
    left: 130px; /* move 130~150px */
    /* Call animation */
    animation-name: arrow_move;
    /* Duration */
    animation-duration: 1s;
    /* Infinite playback*/
    animation-iteration-count: infinite;
}

The effect is as follows:


This concludes this article about using div+css3 to implement a button with a gradient background. For more div+css3 gradient background button content, please search 123WORDPRESS.COM’s previous articles or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  CSS achieves colorful and smart shadow effects

>>:  Interview questions: The difference between the Holy Grail layout and the double-wing layout

Recommend

How to deploy MongoDB container with Docker

Table of contents What is Docker deploy 1. Pull t...

How to configure multiple projects with the same domain name in Nginx

There are two ways to configure multiple projects...

About the configuration problem of MyBatis connecting to MySql8.0 version

When learning mybatis, I encountered an error, th...

Explanation of the new feature of Hadoop 2.X, the recycle bin function

By turning on the Recycle Bin function, you can r...

CSS container background 10 color gradient Demo (linear-gradient())

grammar background: linear-gradient(direction,col...

Tutorial on deploying springboot package in linux environment using docker

Because springboot has a built-in tomcat server, ...

MySQL sorting principles and case analysis

Preface Sorting is a basic function in databases,...

Datagrip2020 fails to download MySQL driver

If you cannot download it by clicking downloadlao...

Several ways to run Python programs in the Linux background

1. The first method is to use the unhup command d...

JavaScript single thread and asynchronous details

Table of contents 1. Task Queue 2. To explain som...

Detailed explanation of the use of React list bar and shopping cart components

This article example shares the specific code of ...

Detailed explanation of Nginx's rewrite module

The rewrite module is the ngx_http_rewrite_module...

MySQL 8.0.15 installation tutorial for Windows 64-bit

First go to the official website to download and ...

How to add a column to a large MySQL table

The question is referenced from: https://www.zhih...