search
HomeWeb Front-endCSS TutorialCSS3 deformation-rotation to achieve 4-color flowers-case analysis (code example)

Goal of this article:

1. Master how to rotate elements in CSS3

Question:

1. Achieve the following effects and use pure DIV CSS

CSS3 deformation-rotation to achieve 4-color flowers-case analysis (code example)

Additional notes:

1. The pink circle with the butterfly is a picture

2. The "4-color flower" in the middle is composed of 4 Semicircles are generated by rotation. The diameter of each semicircle is 180px

Now let’s do the specific operation

1. Prepare the material: the material in the current case is a pink circle with a butterfly

CSS3 deformation-rotation to achieve 4-color flowers-case analysis (code example)

2. Create index.html and write the architecture. How to analyze the architecture?

Idea analysis:

1. The target outer layer is a div, div The background picture is a pink circle with a butterfly

2. The div contains a 4-color flower, so the flower is composed of 5 parts, 4 petals and 1 small white hole

Okay, first follow the analysis and write the idea, and ignore the implementation of css for the time being

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8">
<title>CSS旋转案例</title>
</head> 
<body>
<div class="wrapper">
    <div class="bottole">
        <div class="leaf leaf2"></div>
        <div class="leaf leaf3"></div>
        <div class="leaf leaf4"></div>
        <div class="leaf"></div>
        <div class="smallcircle"></div>
    </div>
</div>
</body>
</html>

3. Write the style, create the css folder, and create a new index.css in it

Idea analysis:

.container * Public style

1. Define public style

.wrapper *{
    margin:0;
    padding:0;
}

.bottole Outer div settings

1. Because we need to ensure that the background image is complete displayed, so it must be larger than the background image

2. The background image cannot be repeated

  .bottole{
    width: 640px;
    height: 420px;
    background-image: url(../images/CSS3 deformation-rotation to achieve 4-color flowers-case analysis (code example));
    background-repeat: no-repeat;
    background-position-x: 40px;
    background-position-y: -35px;
  }

.leaf semicircle leaf

1. Because the diameter of the semicircle is 180, the height must be 90px, then we can realize the semicircle through border-radius, and the default color is defined as orange. In order to make the four semicircles overlap, you must use position:absolute, and then you need to set margin-left and margin-top to make it The position presents the target effect (here we can get it through continuous debugging)

  .wrapper .leaf {
    width: 180px;
    height: 90px;
    border-radius: 180px 180px 0 0;
    background-color: orange;
    position: absolute;
    margin-left: 100px;
    margin-top: 150px;
  }

.leaf2 Set the leaves individually

1. The color of the leaf is green and needs to be rotated 90 degrees

.wrapper .leaf2 {
    background: green;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

.leaf3 Leaves set individually

1. The color of the leaf is blue and needs to be rotated 180 degrees

  .wrapper .leaf3 {
    background: blue;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

.leaf4 Leaves set individually

1. The color of the leaves is red, and the angle that needs to be rotated is 270 degrees

  .wrapper .leaf4 {
    background: red;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }

Small round hole flower center settings

1. The size of the small round holes is 20. We can make the size of a div 20, Then the border-radius can be made into a circle if it is also 20

2. The background color is white

3. In order to position the hole in the center of the flower, we need to set margin-left, margin-top

  .smallcircle{
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 20px;
    position: absolute;
    margin-left: 180px;
    margin-top: 190px;
  }

Okay, so far, we have written all the styles we thought of. If the specifics are not correct, let’s modify it again

So far, all the css contents are as follows:

.wrapper *{
    margin:0;
    padding:0;
}
.bottole{
    width: 640px;
    height: 420px;
    border-radius: 400px;
    background-image: url(../images/CSS3 deformation-rotation to achieve 4-color flowers-case analysis (code example));
    background-repeat: no-repeat;
    background-position-x: 40px;
    background-position-y: -35px;
  }
  .wrapper .leaf {
    width: 180px;
    height: 90px;
    border-radius: 180px 180px 0 0;
    background-color: orange;
    position: absolute;
    margin-left: 100px;
    margin-top: 150px;
  }
.wrapper .leaf2 {
    background: green;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .wrapper .leaf3 {
    background: blue;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .wrapper .leaf4 {
    background: red;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  .smallcircle{
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 20px;
    position: absolute;
    margin-left: 180px;
    margin-top: 190px;
  }

Introduce css into index.html

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8">
<title>CSS旋转案例</title>
<link href="css/index.css" rel="stylesheet" type="text/css">
</head> 
<body>
<div class="wrapper">
    <div class="bottole">
        <div class="leaf leaf2"></div>
        <div class="leaf leaf3"></div>
        <div class="leaf leaf4"></div>
        <div class="leaf"></div>
        <div class="smallcircle"></div>
    </div>
</div>
</body>
</html>

The running effect is as follows:

CSS3 deformation-rotation to achieve 4-color flowers-case analysis (code example)

##Summary:

1. Learned how to rotate elements in css

The above is the detailed content of CSS3 deformation-rotation to achieve 4-color flowers-case analysis (code example). 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
How to use attribute selectors in CSS?How to use attribute selectors in CSS?Jul 23, 2025 am 03:50 AM

In CSS, the attribute selector can set styles according to the attributes and values of the element, providing more flexible style control. ①Basic usage: Select elements with specific attributes, such as input[type] to match all inputs containing type attributes; ②Exact match: Use = to match specific attribute values, such as input[type="text"] to match only the text input box; ③ Partial match: Use = (include), ^= (start), and $= (end), to match part of the attribute values, such as a[href="//m.sbmmt.com/m/faq/example.com"] to match anchors containing specific links; ④Combination match: match multiple attributes at the same time, such as inputtype=&qu

What is the purpose of the CSS `will-change` property?What is the purpose of the CSS `will-change` property?Jul 23, 2025 am 03:47 AM

will-change is a CSS property that is used to inform browser elements in advance of possible changes to optimize performance. Its core function is to enable the browser to create layers in advance to improve rendering efficiency. Common values include transform, opacity, etc., and can also be separated by multiple attribute commas; it is suitable for non-standard attribute animations, complex component transitions and user interaction triggered animations; but it must be avoided abuse, otherwise it will lead to excessive memory usage or increased GPU load; the best practice is to apply before the change occurs and remove it after it is completed.

What is the difference between `display: none` and `visibility: hidden`?What is the difference between `display: none` and `visibility: hidden`?Jul 23, 2025 am 03:43 AM

The main difference between display:none and visibility:hidden is whether the element occupies space and its impact on the layout. 1.display:none will completely remove elements, do not take up space, and the layout will be readjusted; suitable for permanent or dynamic hidden elements. 2.visibility:hidden makes elements invisible but still retain their space and the layout remains unchanged; suitable for situations where structures need to be stable. 3.display:none hides all child elements at the same time, while visibility:hidden can control the display status of child elements separately. When selecting, it is determined based on whether the element is expected to affect the layout.

How to change text color in CSSHow to change text color in CSSJul 23, 2025 am 03:42 AM

To change the color of web page text, the most direct way is to use the color attribute of CSS. 1. Color can be set through color name, hexadecimal, RGB or HSL; 2. Different elements can be set separately, such as navigation links and paragraphs; 3. Flexible color matching is achieved through class selectors; 4. Note that the color attribute is inheritable, and the child elements will inherit the color of the parent element by default, and the style needs to be covered separately to avoid conflicts.

What is grid-auto-flow in CSS Grid?What is grid-auto-flow in CSS Grid?Jul 23, 2025 am 03:33 AM

Thegrid-auto-flowpropertyinCSSGridcontrolshowitemsareautomaticallyplacedwhennotexplicitlypositioned.Bydefault,it’ssettorow,fillingitemslefttoright,rowbyrow;changingittocolumnfillsitemstoptobottom,columnbycolumn.Itcanalsobepairedwithdensetocompactlayo

How to create a simple accordion with pure CSS?How to create a simple accordion with pure CSS?Jul 23, 2025 am 03:24 AM

Using pure CSS to achieve the accordion effect can be completed through HTML and tags. The specific steps are as follows: 1. Use and tags to achieve the expansion and collapse function, with clear semantics and support barrier-free access; 2. Set details borders, inner margins and other styles through CSS to unify the appearance, and hide the default arrows; 3. Note that multiple panels cannot be expanded at the same time through pure CSS restrictions, so JavaScript needs to be introduced to implement this function. In summary, basic functions do not require JS, but complex interactions still require script support.

Describe CSS paint orderDescribe CSS paint orderJul 23, 2025 am 03:20 AM

In CSS, the order of drawing elements is affected by a variety of factors. By default, the browser draws in the order of positioning elements in the background and border → text content → child elements. 1. The default drawing order does not follow the DOM structure completely, but follows the painting order; 2. The hierarchy consists of whether the same stacking context belongs to the same stacking context and whether a new stacking context is created (such as transform, filter, opacity).

What is the difference between auto-fit and auto-fill in CSS Grid?What is the difference between auto-fit and auto-fill in CSS Grid?Jul 23, 2025 am 03:17 AM

auto-fillcreatesasmanytracksaspossible,leavingemptyslotsiftherearen’tenoughitems,whileauto-fitresizestrackstofillthespace,avoidingemptiness.1.auto-fillmaintainsafixedstructure,generatingtracksevenifempty,idealforpredictablelayouts.2.auto-fitadjuststr

See all articles

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

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.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor