search
HomeWeb Front-endCSS TutorialTeach you how to draw a standard circular pattern with CSS

I once shared with you a very clever technique for drawing triangles using pure CSS (please see related articles). Over the past year, I have found this technique of drawing triangles with CSS to be very useful and efficient, especially for creating tooltips/prompts and similar web effects.

Another shape that can also be easily implemented using CSS is the circle. Using border-radius, you can draw various beautiful circular patterns.



CSS code

Just change the border-radius of each side of your web element to even 50%, you You can get a circle of any size:

The code is as follows:

.circle {
 border-radius: 50%;
 width: 200px;
 height: 200px; 
 /* 宽度和高度需要相等 */
}

This is indeed very simple, but we can’t resist using CSS gradient colors and basic rotationAnimationtemptation::

The code is as follows:

/* animation definition*/

@
key
frames spin {
 from { trans
form: rotate(0deg); }
 to { transform: rotate(360deg); }
}</p>
<p>/* 旋转,渐变色 */
#advanced {
 width: 200px;
 height: 200px;</p>
<p> 
background-image: -moz-radial-gradient(45px 45px 45deg, circle cover, yellow 0%, orange 100%, red 95%);
 background-image: -webkit-radial-gradient(45px 45px, circle cover, yellow, orange);
 background-image: radial-gradient(45px 45px 45deg, circle cover, yellow 0%, orange 100%, red 95%);</p>
<p> animation-name: spin; 
 animation-duration: 3s; /* 3 seconds */
 animation-iteration-count: infinite; 
 animation-timing-function: linear;
}


Wow, this is this beautiful one CSS is rounded!

The technique of drawing circles with CSS may not seem as useful as the technique of drawing triangles with CSS at first glance, but it still has its value in page design. You can use animated circles to represent loading... when the page is loading. How to use it depends on your creativity. Do you have any good ideas?

【Related Recommendations】

1. CSS3 free video tutorial

2. CSS3 code tutorial to complete a square box rounded corner effect

3. Teach you how to write CSS styles in a standardized way

4. Tutorial on the use of H5 and CSS3 form validation

5. Detailed code explanation of the gradually glowing border through CSS3 pseudo-elements

The above is the detailed content of Teach you how to draw a standard circular pattern with CSS. 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
ppt怎么做圆形的图片和文字ppt怎么做圆形的图片和文字Mar 26, 2024 am 10:23 AM

首先,在 PPT 中绘制一个圆圈,然后插入一个文本框,输入文字内容。最后,设置文本框的填充和轮廓为无,即可完成圆形图片和文字的制作。

ppt怎么做圆形的图片ppt怎么做圆形的图片Mar 25, 2024 pm 03:54 PM

ppt做圆形的图片的方法:1、使用裁剪功能;2、使用形状工具;3、使用快捷键和控点调节。

如何通过纯CSS实现图片平滑过渡的方法和技巧如何通过纯CSS实现图片平滑过渡的方法和技巧Oct 18, 2023 am 08:15 AM

如何通过纯CSS实现图片平滑过渡的方法和技巧引言:在网页设计中,图片的使用是非常常见的,如何让图片在切换和加载过程中呈现出平滑的过渡效果,让用户体验更加流畅,是每个设计师和开发者都要考虑的问题。本文将介绍一些通过纯CSS来实现图片平滑过渡的方法和技巧,并提供具体的代码示例。一、缩放过渡效果可以使用CSS的transform属性来实现图片的缩放过渡效果。通过设

圆扇形的面积是多少?圆扇形的面积是多少?Aug 30, 2023 am 08:33 AM

圆扇形,也称为圆扇区/圆的扇区,是由两个半径之间的弧线所围成的圆的一部分。这个区域被两个半径和一个弧线所包围。为了找到内切的面积,我们需要找到两个半径之间的角度。总面积等于360度的角度。为了找到一个角度的面积,我们将面积乘以θ/360。这给出了内切部分的面积。其中θ是两个半径之间的角度(以度为单位)。圆扇形的面积=π*r*r*(θ/360)。示例半径为5,角度为60度的圆扇形的面积为13.083。面积=(3.14*5*5)*(60/360)=13.03示例代码&nbsp;演示#incl

CSS布局技巧:实现圆形网格图标布局的最佳实践CSS布局技巧:实现圆形网格图标布局的最佳实践Oct 20, 2023 am 10:46 AM

CSS布局技巧:实现圆形网格图标布局的最佳实践在现代网页设计中,网格布局是一种常见且强大的布局技术。而圆形网格图标布局则是一种更加独特和有趣的设计选择。本文将介绍一些最佳实践和具体代码示例,帮助你实现圆形网格图标布局。HTML结构首先,我们需要设置一个容器元素,在这个容器里放置图标。我们可以使用一个无序列表(&lt;ul&gt;)作为容器,列表项(&lt;l

纯CSS实现响应式导航栏的下拉选项卡菜单效果的实现步骤纯CSS实现响应式导航栏的下拉选项卡菜单效果的实现步骤Oct 28, 2023 am 09:58 AM

纯CSS实现响应式导航栏的下拉选项卡菜单效果的实现步骤导航栏是网页中常见的元素之一,而下拉选项卡菜单则是导航栏中经常使用的一种效果,能够提供更多的导航选项。本文将介绍如何使用纯CSS实现一个响应式的导航栏下拉选项卡菜单效果。步骤一:搭建基础HTML结构我们首先需要搭建一个基础的HTML结构来进行演示,并且为这个导航栏添加一些样式。下面是一个简单的HTML结构

如何通过纯CSS实现图片的立方体转动效果的方法和技巧如何通过纯CSS实现图片的立方体转动效果的方法和技巧Oct 21, 2023 am 09:36 AM

如何通过纯CSS实现图片的立方体转动效果的方法和技巧在现代网页设计中,添加一些炫酷的效果是非常重要的,而利用CSS实现立方体转动效果是一个非常有趣而具有挑战性的任务。本文将介绍一种通过纯CSS实现图片的立方体转动效果的方法和技巧,并提供一些具体的代码示例。首先,我们需要一个基本的HTML结构,包含一个容器元素和六个面元素,每个面元素都包含一张图片。&lt;d

如何通过纯CSS实现图片的放大缩小效果的方法和技巧如何通过纯CSS实现图片的放大缩小效果的方法和技巧Oct 24, 2023 am 10:13 AM

如何通过纯CSS实现图片的放大缩小效果的方法和技巧在现代的网页设计中,图片的展示和处理是非常重要的一部分。而图片的放大缩小效果可以为网站的视觉呈现增添趣味和交互性。在这篇文章中,我们将介绍如何通过纯CSS实现图片的放大缩小效果,并提供具体的代码示例。使用transition属性实现平滑的过渡效果要实现图片的放大缩小效果,我们可以使用transition属性来

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)