<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML5 LOGO</title>
<style>
.bg{
width: 500px;
height: 500px;
background: mediumpurple;
margin: auto;/*网页居中*/
position: relative;
overflow: hidden;/*隐藏内容溢出*/
}
.light{
background: paleturquoise;
width: 800px;
height: 20px;
position: absolute;
left: -150px;
top: 240px;
}
#dunpai{
position: relative;
width: 100px;
}
.l1{position:absolute; background: #8A2BE2; width: 100px; height: 300px; left: 150px; top: 100px; }
.l2{position:absolute; background: #8A2BE2; width: 100px; height: 300px; left: 118px; top: 100px; transform: skewX(12deg); }
.l3{position:absolute; background: #8A2BE2; width: 100px; height: 100px; left: 150px; top: 310px; transform: skewY(12deg); } .r1{position:absolute; background: #8A2BE2; width: 100px; height: 300px; left: 250px; top: 100px; }
.r2{position:absolute; background: #8A2BE2; width: 100px; height: 300px; left: 282px; top: 100px; transform: skewX(-12deg); }
.r3{position:absolute; background: #8A2BE2; width: 100px; height: 100px; left: 250px; top: 310px; transform: skewY(-12deg); } #shield{position: absolute; transform: scale(0.9); left: 25px; top: 25px;}
.rg1{position:absolute; background: deepskyblue; width: 100px; height: 300px; left: 250px; top: 100px; }
.rg2{position:absolute; background: deepskyblue; width: 100px; height: 300px; left: 282px; top: 100px; transform: skewX(-12deg);}
.rg3{position:absolute; background: deepskyblue; width: 100px; height: 100px; left: 250px; top: 310px; transform: skewY(-12deg);} .wu1,.wu2,.wu3,.wu4{background: #eee; position: absolute;}
.wu1{height: 20px; width: 80px; left: 170px; top: 153px; }
.wu2{height: 20px; width: 60px; left: 190px; top: 237px; }
.wu3{height: 18px; width: 43px; left: 209px; top: 339px; transform: skewY(12deg); }
.wu4{height: 200px; width: 20px; left: 188px; top: 153px; transform: skewX(12deg); } .wu5,.wu6,.wu7,.wu8{background: #fff; position: absolute;}
.wu5{height: 20px; width: 80px; left: 250px; top: 153px; }
.wu6{height: 20px; width: 60px; left: 250px; top: 237px; }
.wu7{height: 18px; width: 43px; left: 250px; top: 339px; transform: skewY(-12deg); }
.wu8{height: 200px; width: 20px; left: 296px; top: 153px; transform: skewX(-12deg); } .wu9{position:absolute; height:31px; width: 30px; left: 189px; top: 257px; background: #8A2BE2; transform: skewX(12deg);}
.wu10{position:absolute; height:64px; width: 29px; left: 305px; top: 173px; background: deepskyblue;; transform: skewX(-12deg); } #txt{position: absolute; width:180px ; height: 80px; left: 152px; top: 10px; font-size: 75px;}
</style>
</head>
<body>
<div class="bg">
<div class="light" style="transform:rotate(60deg) ;"></div>
<div class="light" style="transform:rotate(90deg) ;"></div>
<div class="light" style="transform:rotate(120deg) ;"></div>
<div class="light" style="transform:rotate(150deg) ;"></div>
<div class="light" style="transform:rotate(180deg) ;"></div>
<div class="light" style="transform:rotate(210deg) ;"></div> <div id="dunpai">
<div class="l1"></div>
<div class="l2"></div>
<div class="l3"></div> <div class="r1"></div>
<div class="r2"></div>
<div class="r3"></div> <div id="shield">
<div class="rg1"></div>
<div class="rg2"></div>
<div class="rg3"></div>
</div> <div class="wu1"></div>
<div class="wu2"></div>
<div class="wu3"></div>
<div class="wu4"></div> <div class="wu5"></div>
<div class="wu6"></div>
<div class="wu7"></div>
<div class="wu8"></div> <div class="wu9"></div>
<div class="wu10"></div> <div id="txt">HTML</div>
</div> </div>
</body>
</html>

H5 ,Css实现了你的logo的更多相关文章

  1. [css]我要用css画幅画(九) - Apple Logo

    接着之前的[css]我要用css画幅画(八) - Hello Kitty,这次画的是苹果公司的logo 这次打算将分析和实现步骤尽量详细的说一说. 其实之前的也打算详细讲分析和设计过程,不过之前的图比 ...

  2. H5 CSS 悬浮滚动条

    H5 CSS 悬浮滚动条 refs xgqfrms 2012-2020 www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!

  3. css画小米、遨游logo

    狠简单的2个Logo,用纯css写出来,觉得挺好玩的. <!DOCTYPE html> <html> <head> <meta charset="u ...

  4. 【黑马pink老师的H5/CSS课程】(一)基本介绍

    视频P4~P6 黑马程序员pink老师前端入门教程,零基础必看的h5(html5)+css3+移动 1.网页 1.1 什么是网页 网站是网页的集合,网页是构成网站的基本元素,常用html格式文件 1. ...

  5. H5 CSS的格式

    02-CSS的格式 标签名称{ 属性名称: 属性对应的值; ... } 2.注意点: 1.style标签必须写在head标签的开始标签和结束标签之间(也就是必须和title标签是兄弟关系) 2.sty ...

  6. h5 . css入门 2.CSS基础

    CSS基础 学习目标 1.CSS简介 2.CSS语法 3.样式的创建 4.两种引入外部样式表的区别 5.样式表的优先级和作用域 6.CSS选择器 7.选择器的权重 8.浮动属性的简单应用 9.HTML ...

  7. H5 css学习

    p{text-indent:2em;}段前空两格   段落排版--行间距(行高) p{line-height:1.5em;} 段落排版--中文字间距.字母间距  h1{    letter-spaci ...

  8. 实训H5+CSS 太极图

    大概就是上面这个样子 我们准备 两个半圆,两个大圆,两个小圆,然后稍微的进行覆盖就行~ <!doctype html> <html> <head> <meta ...

  9. H5,Css小姐又作画了

    用H5和CSS3做出自己名字缩写. <html> <head> <meta charset="utf-8"> <title>name ...

随机推荐

  1. 文件中pe到内存中pe

    前言 学pe的时候被困扰了很久,终于在某处给我找到了,打算打出来读一读代码 这边我们是从文件中的pe转到运行中的pe,然后再缩小存储到文件的pe 这边我们需要知道内存中对齐是0x1000,文件对齐是0 ...

  2. MVC IIS 403.14

    描述:HTTP Error 403.14 - Forbidden The Web server is configured to not list the contents of this direc ...

  3. k8s各组件启动时, -v参数指定的日志级别

    k8s 相关组件启动时 -v参数指定的日志级别 --v=0 Generally useful for this to ALWAYS be visible to an operator. --v=1 A ...

  4. day79:luffy:注册之对手机号的验证&实现基本的注册功能逻辑&点击获取验证码&redis

    目录 1.前端和后端对于手机号的验证 2.实现基本的注册功能-不包括验证码 3.点击获取验证码 4.解决登录不上Xadmin的bug 5.redis register.vue页面 <templa ...

  5. Luogu P6280 [USACO20OPEN]Exercise G

    题意 定义一个长度为 \(n\) 的置换的步数为将 \(P=(1,2,\cdots,n)\) 在该置换操作下变回原样的最小次数. 求所有 \(K\) 的和,使得存在一个长度为 \(n\) 的置换使得其 ...

  6. NB-IoT和LORA技术通信距离是一样的吗

    如今物联网的无线通信技术非常多,这其中主要分为两大类:一类是以Zigbee.WiFi.蓝牙.Z-wave等短距离通信技术为主:另一类就是以LPWAN(low-powerWide-AreaNetwork ...

  7. Redis事务使用方法

    Redis事务 Redis事务是一组命令的集合,也是Redis的最小执行单位之一.一个事务的所有命令,要么都执行,要么都不执行.Redis能保证事务执行期间不会有其他命令插入. 相关命令 命令 格式 ...

  8. 初步配置基于Struts的maven的Web项目demo

    1.创建mavenweb项目 eclipse | Idea 中创建maven项目,具体步骤PASS. 2.导入Struts2核心架包 Idea中在maven项目上,选择ADD FRAMEWORK ec ...

  9. Charles使用part5——模拟慢网络

    一.配置参数解析: bandwidth -- 带宽,即上行.下行数据传输速度utilisation -- 带宽可用率,大部分modern是100%round-trip latency -- 第一个请求 ...

  10. 09线程隔离的g对象

    1,g是global的意思. g对象再一次请求中的所有的代码的地方,都是可以使用的. 同一次请求,那么在这个项目的所有地方都可以用了. from flask import Flask,request, ...