search
HomeWeb Front-endHTML Tutorial纯css实现扁平化360卫士logo demo_html/css_WEB-ITnose

前几天在w3ctech上看到有人用纯css写出了360卫士的logo,感觉蛮好玩的。

 

因为自己用css以来,还没有写过这种玩意,出于娱乐,我也来试着尝试一下。

 

开始也不知到怎么下手,最棘手的是那两个像太极的东东不好弄。不过,好在以前用过photoshop绘制过一些简单的icon。所以,经过我仔细

 

的分析。大概有了思路,这两个东东是可以利用box-shadow这个属性来实现。虽然跟photoshop绘制有点不同,但是大致还是差不多的。

 

代码效果预览地址:http://code.w3ctech.com/detail/2501。

 1 <div class="container"> 2         <div class="content top"></div> 3         <div class="content bottom"></div> 4         <div class="content center"> 5             <div class="line x"></div> 6             <div class="line y"></div> 7         </div> 8         <div class="clip"></div> 9         <div class="circle circle-top"></div>10         <div class="circle circle-bottom"></div>11         <div class="react-top"></div>12         <div class="react-bottom"></div>13     </div>

在html代码部分,其实是有赘余的。像react-top 和 react-bottom这两个部分是可以不用的。由于自己没有通过比例计算。所以,

 

只好用这两个东东打补丁了。

  1 * {  2             padding: 0;  3             margin: 0;  4         }  5   6         body {  7             background-color: #d5d3d4;  8         }  9  10         .container { 11             width: 450px; 12             height: 450px; 13             position: relative; 14             top: 100px; 15             left: 50%; 16             transform: translateX(-50%); 17             background-color: #fff; 18             border-radius: 10px; 19             box-shadow: 0 0 5px #c2bfbf; 20         } 21  22         .content { 23             width: 300px; 24             height: 300px; 25             border-radius: 50%; 26             position: absolute; 27         } 28         .top{ 29             top: 55px; 30             left: 100px; 31             box-shadow:0 30px 0 #50dd45; 32             transform:rotate(50deg); 33             z-index:1000; 34         } 35         .center{ 36             top: 75px; 37             left: 75px; 38             background-color: #e8fc38; 39  40         } 41         .bottom{ 42             top: 95px; 43             left: 50px; 44             box-shadow:0 -30px 0 #50dd45; 45             transform:rotate(50deg); 46             z-index:1000; 47         } 48         .clip{ 49             width:1px; 50             height:1px; 51             border:150px solid transparent; 52             border-left-color:#e8fc38; 53             border-right-color:#e8fc38; 54             border-radius:50%; 55             position:absolute; 56             top:50%; 57             left:50%; 58             transform:translate(-50%,-50%); 59             z-index:1001; 60         } 61         .line{ 62             background-color:#50dd45; 63             border-radius:20px; 64             position:absolute; 65             top:50%; 66             left:50%; 67             transform:translate(-50%,-50%); 68             z-index:1010; 69         } 70         .x{ 71             width:180px; 72             height:45px; 73         } 74         .y{ 75             width:45px; 76             height:180px; 77         } 78         .circle{  79             width: 30px; 80             height: 32px; 81             border-radius: 50%; 82             background-color: #50dd45; 83             z-index: 1012; 84         } 85         .circle-bottom{ 86             position: absolute; 87             top: 302px; 88             left: 114px; 89         } 90         .circle-top{ 91             position:absolute; 92             top: 111px; 93             left: 300px; 94         } 95         .react-top{ 96             width: 15px; 97             height: 8px; 98             background-color: #e8fc38; 99             transform: rotate(150deg);100             position: absolute;101             top: 115px;102             left: 120px;103             z-index: 1100;104         }105         .react-bottom{106             width: 15px;107             height: 8px;108             background-color: #e8fc38;109             transform: rotate(150deg);110             position: absolute;111             top: 326px;112             left: 317px;113             z-index: 1100;114         }

由于自己比较喜欢用firefox的开发者工具,所以这个只在firefox上测试过。

 

对于刚在学习css的同学是个不错的小案例,分享给你们,有兴趣的可以试试。当然,如果有更好的思路的,可以在下面留言,相互探讨,一起进步。

 

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
HTML vs. CSS vs. JavaScript: A Comparative OverviewHTML vs. CSS vs. JavaScript: A Comparative OverviewApr 16, 2025 am 12:04 AM

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML: Is It a Programming Language or Something Else?HTML: Is It a Programming Language or Something Else?Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML: Building the Structure of Web PagesHTML: Building the Structure of Web PagesApr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

From Text to Websites: The Power of HTMLFrom Text to Websites: The Power of HTMLApr 13, 2025 am 12:07 AM

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

Understanding HTML, CSS, and JavaScript: A Beginner's GuideUnderstanding HTML, CSS, and JavaScript: A Beginner's GuideApr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

The Role of HTML: Structuring Web ContentThe Role of HTML: Structuring Web ContentApr 11, 2025 am 12:12 AM

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.

HTML and Code: A Closer Look at the TerminologyHTML and Code: A Closer Look at the TerminologyApr 10, 2025 am 09:28 AM

HTMLisaspecifictypeofcodefocusedonstructuringwebcontent,while"code"broadlyincludeslanguageslikeJavaScriptandPythonforfunctionality.1)HTMLdefineswebpagestructureusingtags.2)"Code"encompassesawiderrangeoflanguagesforlogicandinteract

HTML, CSS, and JavaScript: Essential Tools for Web DevelopersHTML, CSS, and JavaScript: Essential Tools for Web DevelopersApr 09, 2025 am 12:12 AM

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.

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)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

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.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor