CSS3 achieves conic-gradient effect

CSS3 achieves conic-gradient effect

grammar:

background-image: conic-gradient(from angle at position, start-color, ..., last-color )

First parameter:

from angle: starting angle, optional, default is from top to bottom

position: the position of the cone point

Second parameter:

start-color : defines the start color

stop-color : defines the end color

1. The first parameter

Likewise, the first parameter can be empty, the default angle is 0 degrees, and the cone center is the center point of the shape. For example:

background-image: conic-gradient(#69f, #fd44ff); 

We can change the starting angle, such as:

background-image: conic-gradient(from -90deg, #69f, #fd44ff); 

Change the cone center position:

background-image: conic-gradient(from -90deg at 80px 120px, #69f, #fd44ff) 

2. The second parameter

Like linear and radial gradients, you can set the color and the starting position of the gradient. The position parameters accepted are percentage and angle. For example:

background-image: conic-gradient(#69f 10%, #fd44ff 10%);

The above code is equivalent to:

background-image: conic-gradient(#69f 36deg, #fd44ff 36deg);

The display effect is as follows:

3. Repeat the cone gradient

Like linear and radial gradients, conic gradients also have the property of repeating.

background-image: repeating-conic-gradient(#69f 0 36deg, #fd44ff 36deg 72deg);

The effect is as shown below:

Does this rendering look a little familiar?

Let's set it to a circle and add a button, and it will become a lottery disc.

The effect is as follows:

Address: https://codepen.io/jianxiujiucan/pen/bGddbez

We can use cones to create a variety of loading effects:

Address: https://codepen.io/jianxiujiucan/pen/bGdGyKN

For the second loading, please study it yourself and write some exercises~

We can use gradients to create a variety of effects.

Summarize

The above is the editor's introduction to the conic-gradient effect achieved with CSS3. I hope it will be helpful to everyone!

<<:  How to Use rsync in Linux

>>:  Analysis of Facebook's Information Architecture

Recommend

How to write a Node.JS version of a game

Table of contents Overview Build Process Related ...

How to reduce memory usage and CPU usage of web pages

Some web pages may not look large but may be very...

Using radial gradient in CSS to achieve card effect

A few days ago, a colleague received a points mal...

Detailed explanation of Vue routing router

Table of contents Using routing plugins in a modu...

sql script function to write postgresql database to implement parsing

This article mainly introduces the sql script fun...

Docker builds jenkins+maven code building and deployment platform

Table of contents Docker Basic Concepts Docker in...

Detailed explanation of using pt-heartbeat to monitor MySQL replication delay

pt-heartbeat When the database is replicated betw...

Detailed explanation of the new array methods in JavaScript es6

Table of contents 1. forEach() 2. arr.filter() 3....

CentOS 8 is now available

CentOS 8 is now available! CentOS 8 and RedHat En...

VPS builds offline download server (post-network disk era)

motivation Due to learning needs, I purchased a v...

Share 8 CSS tools to improve web design

When one needs to edit or modify the website desi...

MySQL msi installation tutorial under windows10 with pictures and text

1. Download 1. Click the latest download from the...

Related commands to completely uninstall nginx under ubuntu16.04

nginx Overview nginx is a free, open source, high...

Docker+nacos+seata1.3.0 installation and usage configuration tutorial

I spent a day on it before this. Although Seata i...