700行无用 纯 CSS 祝考生 金榜高粽《1_bit 的无用 CSS 代码 》

今天才想起来这回事,没办法就急急忙忙的赶工一下,接下来我就画一下这个海报试试手了:

请添加图片描述

一、背景制作

1.1 准备工作

先给整个网页制作一个布局吧,直接 flex 搞定,并且使其居中 justify-content、align-items 都要赋值为 center:

body {display: flex;justify-content: center;align-items: center;height: 100vh;width: 100vw;
}

接下来直接创建一个 div ,给予一个 demo 样式:

<body><div 那么这个demo 样式如下:```css
.demo {height: 400px;width: 1200px;position: relative;background-color: #8bb72b;overflow: hidden;
}

那么此刻咱们需要做的准备工作就搞定了,那么接下来咱们就在这个框内画东西:

在这里插入图片描述

1.2 背景云朵

首先咱们就先画一个云朵吧,云朵就在粽子的脚底下,制作起来很简单;哦,提一下,为了简单(主要是懒),就直接在 style 标签中添加样式吧。

我们先看一下一个云朵的样子:

在这里插入图片描述

这个云呢一看就知道就是一个 div 给予一个圆角,随后再来一个 before 和 after 不就搞定了?

所以现在咱们创建一个 cloud 样式,并且设置 before 和 after 的样式:

.cloud:after,
.cloud:before {content: "";position: absolute;background-color: white;border-radius: 50%;
}.cloud:after {width: 50px;height: 50px;top: -54%;left: 14%;
}.cloud:before {width: 100px;height: 100px;top: -90%;right: 10%;
}

after 和 before 大小不一样,所以我设置的宽高也是不一的,但总有一个大或者一个小;不过一定要记住设置圆角否则你的云就是这样:

在这里插入图片描述

突然感觉这个云很像一个坦克,看来坦克我也会画了。

绘制好云后你可以再设置两个样式,当然你也可以用子元素选择器为多个云设置不一样的大小、位置信息,在这里图方便,我就直接给予了两个样式:

.cloud1 {transform: scale(1);opacity: 0.8;left: 100px;top: 410px;z-index: 1;
}.cloud2 {left: 260px;top: 360px;transform: scale(1.1);opacity: 0.9;z-index: 1;
}

这两个样式给予的透明度 opacity 是为了使云彩更加的“缥缈”,当然你也可以再加一些阴影,这样看起来更加真实,并且其中的 scale 可以帮助你调整云朵大小,再或者你可以使用 rotate 等其他方法转动一下角度都行。

最后我添加两个 div,包裹在一个 div 中方便分类(可能我的风格不是前端风格,不要在意):

<div class="demo"><div class="cloud-main"><div class="cloud cloud1"></div><div class="cloud cloud2"></div></div>
</div>

1.3 背景圈圈圈

云朵增加完了咱们就开水增加这些背景上的“圈圈圈”吧:

在这里插入图片描述

这些圈圈圈你可以用背景渐变来做,在这里我就直接画了,也就是一个 div 设置好圆角然后 left、top、bottom 调一下位置,说起来是真的简单,就不再赘述这里了,直接写上样式:

.circle {position: absolute;height: 400px;width: 1200px;
}.circle1,
.circle2,
.circle3,
.circle4,
.circle5,
.circle6,
.circle7,
.circle8 {position: absolute;border-radius: 100%;background-color: #0f893c;
}.circle1 {height: 300px;width: 300px;bottom: -130px;
}.circle2 {height: 150px;width: 150px;bottom: -30px;left: 270px
}.circle3 {height: 30px;width: 30px;bottom: 10px;left: 430px
}.circle4 {height: 60px;width: 60px;bottom: 10px;left: 530px
}.circle5 {height: 160px;width: 260px;bottom: -130px;left: 530px
}.circle6 {height: 60px;width: 160px;bottom: -30px;left: 730px
}.circle7 {height: 60px;width: 160px;bottom: -30px;left: 780px
}.circle8 {height: 160px;width: 160px;bottom: -80px;left: 880px
}
/*黄色圈*/.y-circle1,
.y-circle2,
.y-circle3,
.y-circle4 {position: absolute;border-radius: 100%;background-color: #cdd622;
}.y-circle1 {height: 60px;width: 60px;bottom: 180px;left: 880px
}.y-circle2 {height: 30px;width: 30px;bottom: 280px;left: 780px
}.y-circle3 {height: 10px;width: 10px;bottom: 380px;left: 720px
}.y-circle4 {height: 20px;width: 20px;bottom: 290px;left: 680px
}

因为每一个圆圈圈都有不同的大小,所以就写了多个样式用于调整他们的大小、位置等,突然发现还不如用渐变方便,但是写都写了,那就贴上吧;接着咱们在 html 中添加元素:

<div class="circle"><div class="circle1"></div><div class="circle2"></div><div class="circle3"></div><div class="circle4"></div><div class="circle5"></div><div class="circle6"></div><div class="circle7"></div><div class="circle8"></div><div class="y-circle1"></div><div class="y-circle2"></div><div class="y-circle3"></div><div class="y-circle4"></div>
</div>

此时整个背景效果如下:

在这里插入图片描述

是不是感觉好像有点意思了?那我们接着往下。

二、添加角色元素

2.1 添加小太阳

首先咱们可以分析一下这个小太阳:

在这里插入图片描述

我们可以明显的知道小太阳这个角色和本身太阳的区别,那就是有了表情;没有表情的太阳和有表情的太阳完全不是同一个“东西”,这差距就像 “喜欢吃辣的人看到了豆腐无感,看到了麻婆豆腐就控制不了自己” ,所以关键点就是表情的制作。

虽然有表情和没表情的观感不一样,但是本质一个圆还是要画的,那么这个太阳还有周围的红色小点阳光,肯定是在一个父容器之下,那么此时咱们先给他们的父容器设置一个样式吧:

/*太阳*/  
.sun {position: absolute;height: 150px;width: 150px;
}

在这里我定义了这个父容器的布局以及宽高,那么接下来咱们就开始定义这个太阳的主体,直接设置一个元素圆角值给满随后稍微定一下位置即可:

.sun-body {position: absolute;height: 95px;width: 95px;background-color: #ff5f47;border-radius: 100%;border: 4px black solid;left: 30px;top: 30px;
}

那么主体有了,就到眼睛了,很明显眼睛就是豆豆眼,直接一个元素圆角,设置背景色为黑解决:

.sun-eye {position: absolute;height: 10px;width: 10px;background-color: black;border-radius: 100%;
}

那么此时太阳的眼睛有一个左有一个右,所以需要设置两个样式用于控制眼睛的位置,此时我们还需要注意到,接下来要绘制的粽子的眼睛也是有左右的,所以在这里需要设置样式限制在 sun-body 之下,那么这两个样式如下:

.sun-body>.eye-left {top: 60px;left: 70px;
}.sun-body>.eye-right {top: 50px;left: 40px;
}

此时页面效果如下:

在这里插入图片描述

此时的太阳面无表情,不懂的还以为是少了一个洞的保龄球,所以表情还是很重要的,接着添加一个 smile 样式让太阳笑看人生,那这个样式怎么做呢?毕竟这个嘴巴是就等于一个雪糕棒的样子:

在这里插入图片描述

那我们就先开始画一个雪糕吧,就直接写一个 smile 样式,等下再改就好了;雪糕也是一个矩形,那么直接先给予一个矩形吧

.sun-body>.smile {position: absolute;width: 100px;height: 100px;background-color: #fdc2a6 50%;top: 70px;left: 245px;border: 4px black solid;
}

效果如下:

在这里插入图片描述

那剩下的不就是给下面两个圆角变圆不就好了?真是恍然大悟,直接给予样式:

border-top-left-radius: 8%;
border-top-right-radius: 16%;
border-bottom-left-radius: 80%;
border-bottom-right-radius: 90%;

在这里插入图片描述

那么再给这个嘴巴转一下:

transform: rotate(20deg);

在这里插入图片描述

如果你想做一些效果还可以沿着垂直方向变换一下,都可以。那么接下来直接定位,并且给予背景色就完成了:

.sun-body>.smile {position: absolute;width: 10px;height: 10px;background-color: #fdc2a6 50%;top: 70px;left: 45px;border: 4px black solid;border-top-left-radius: 8%;border-top-right-radius: 16%;border-bottom-left-radius: 80%;border-bottom-right-radius: 90%;transform: rotate(20deg);
}

在这里插入图片描述

最后再加一些阳光,阳光就是圆嘛,很简单的,所以直接写好样式:

.sunshine-top-left,
.sunshine-top-right,
.sunshine-bottom-left,
.sunshine-bottom-right {position: absolute;background-color: #a54a29;border-radius: 100%;
}.sunshine-top-left {height: 10px;width: 10px;left: -30px;top: -20px;
}.sunshine-top-right {height: 20px;width: 20px;left: 130px;top: 20px;
}.sunshine-bottom-left {height: 30px;width: 30px;left: -20px;top: 120px;
}.sunshine-bottom-right {height: 10px;width: 10px;left: 110px;top: 120px;
}

再调用即可:

<div class="sun-body"><div class="sun-eye eye-left"></div><div class="sun-eye eye-right"></div><div class="smile"></div><div class="sunshine-top-left"></div><div class="sunshine-top-right"></div><div class="sunshine-bottom-left"></div><div class="sunshine-bottom-right"></div>
</div>

在这里插入图片描述

2.2 添加粽子

2.2.1 粽子 body

粽子的话就是里面的白花花的米和外面两块叶子和简单的四肢:

在这里插入图片描述

做起来是挺简单的,叶子的话纹路我没有添加,可以简便加上去就好了,首先我们制作里面白花花的糯米和绿油油的叶子部分。

其实这个部分我是分为了上、右、下、左四个部分制作的:

在这里插入图片描述

并且再考虑这些部分都是同一个物体,所以也需要一个容器对其进行包裹,首先给予一个容器样式:

.rice-dumplings {height: 400px;width: 400px;position: absolute;transform: scale(0.5);left: 0;
}

接着先制作粽子的左半部分,其实左半部分也就是一个半圆进行变换而来, 左右两边的样式本质上是一致的,所以直接给予粽子上部分左右两边相同的样式:

.rice-dumplings-body-left-top,
.rice-dumplings-body-right-top {position: absolute;background-color: #ffffff;height: 300px;width: 300px;border-top-left-radius: 100%;border: 4px black solid;border-right: 0px;
}

在上面的样式中,由于右边编剧是有边框线的,直接去掉即可,所以使用了代码 border-right: 0px;

接着给予左右两边不一样的变换以及位置信息:

.rice-dumplings-body-left-top {left: 25px;top: 25px;transform: rotateY(30deg) rotate(-10deg);
}.rice-dumplings-body-right-top {left: 235px;top: 25px;transform: rotateY(210deg) rotate(-10deg);
}

在这里插入图片描述

这个时候就应该给这个目前来说像半个饭团的东西一点“遮羞布”了,也就是两张叶子。

这两张叶子的制作方式相似,也就是给圆角然后进行旋转即可,在这里需要注意的是不同大小、角度的叶子变换效果不一样,可以适当的调整效果,并且其内部的叶子纹路也可以通过渐变制作,在这里我是用了渐变色,也可以使用阴影为其添加层次感:

.rice-dumplings-body-left-bottom,
.rice-dumplings-body-right-bottom {position: absolute;background: linear-gradient(to bottom right, #459712 15%, #8ad35d 80%, #459712 100%);border-top-left-radius: 0%;border: 4px black solid;
}.rice-dumplings-body-left-bottom {height: 200px;width: 400px;top: 240px;left: 50px;border-bottom-left-radius: 100%;border-bottom-right-radius: 100%;border-top-right-radius: 100%;transform: rotate(15deg);
}.rice-dumplings-body-right-bottom {height: 200px;width: 250px;top: 260px;left: 250px;border-bottom-left-radius: 100%;border-bottom-right-radius: 20%;border-top-right-radius: 100%;transform: rotateY(180deg);
}

接着在代码中进行调用:

<div class="rice-dumplings"><div class="rice-dumplings-body"><div class="rice-dumplings-body-left-top"></div><div class="rice-dumplings-body-right-top"></div><div class="rice-dumplings-body-left-bottom"></div><div class="rice-dumplings-body-right-bottom"></div></div>
</div>

此时效果如下:

在这里插入图片描述

2.2.2 粽子 face

接着咱们开始制作这个粽子的脸部,这个脸部也需要在一个容器之内,所以继续设置一个父容器:

.rice-dumplings-face {position: absolute;
}

接着制作这个脸部的眼睛,这个眼睛可以看到其内部还有一个亮点:

在这里插入图片描述

这个亮点制作其实就是一个缩小版的白色圆点而已,所以现在就知道这个怎么做了,直接设置两个黑点和两个白点,使其在近似的位置就解决了:

.rice-dumplings-face {position: absolute;
}.rice-dumplings-eye {position: absolute;height: 30px;width: 30px;border-radius: 100%;background-color: black;
}.eye-left {left: 250px;top: 80px;
}.eye-right {left: 350px;top: 70px;
}.rice-dumplings-eye>.light {position: absolute;height: 10px;width: 10px;border-radius: 100%;background-color: white;
}.rice-dumplings-eye>.postion {right: 20%;top: 10%;
}.rice-dumplings-eye>.right {right: 20%;top: 10%;
}

以上样式中 light 为亮点,创建一个基础样式后再创建左右样式进行调用就可以了:

<div class="rice-dumplings-face"><div class="rice-dumplings-eye eye-left"><div class="light postion"></div></div><div class="rice-dumplings-eye eye-right"><div class="light postion"></div></div>
</div>

在这里插入图片描述

接着制作两个小脸蛋,也就是一个宽度大于高度的椭圆,设置其 before 文本为“///” 颜色为白就完美解决:

/*脸颊*/.cheek {position: absolute;top: 120px;background-color: #fd8373;border-radius: 100%;
}.cheek::before {position: absolute;content: "/ / /";color: white;left: 23%;top: 13%;
}.cheek-left {height: 40px;width: 80px;left: 190px;
}.cheek-right {height: 40px;width: 60px;left: 380px;
}

在这里插入图片描述

接着嘴巴的样式跟太阳的一样,在这里只需要设置对应的渐变色一半为红色一半为粉红色即可:

.smile {position: absolute;width: 60px;height: 80px;background: linear-gradient( #fdc2a6 50%, #fa7768 50%);top: 120px;left: 300px;border: 4px black solid;border-top-left-radius: 8%;border-top-right-radius: 16%;border-bottom-left-radius: 80%;border-bottom-right-radius: 90%;
}

在这里插入图片描述

由于其本身太阳也是相同样式,所以背景色也应用到了太阳嘴巴之中,都是同一款嘴型。

2.2.3 粽子四肢

粽子的四肢制作那就更简单了,直接设置一个 div 留有边框,去掉其他边框之后使用 before 或者 after 做手掌或者脚掌部分就可以了:

在这里插入图片描述

此时我们给予样式,调整好位置即可:

/*四肢*/
.arm-left {position: absolute;height: 100px;width: 100px;border: 6px black solid;border-top: 0px;border-left: 0px;transform: rotate(45deg);left: 160px;top: 160px;
}.arm-left::before {position: absolute;content: "";height: 50px;width: 30px;right: -15%;border-radius: 100%;background-color: black;
}.arm-left::after {position: absolute;content: "";height: 20px;width: 10px;right: 8%;top: 15%;border-radius: 100%;background-color: black;transform: rotate(-45deg);
}.arm-right {position: absolute;height: 130px;width: 100px;border-right: 6px black solid;left: 390px;top: -52px;transform: rotate(45deg);
}.arm-right::before {position: absolute;content: "";height: 50px;width: 30px;right: -15%;border-radius: 100%;background-color: black;
}.leg-left {position: absolute;height: 50px;width: 50px;border: 6px black solid;border-top: 0px;border-left: 0px;left: 160px;top: 435px;
}.leg-left::before {position: absolute;content: "";height: 30px;width: 15px;left: -15%;bottom: -30px;border-radius: 100%;background-color: black;
}.leg-right {position: absolute;height: 100px;width: 50px;border-right: 6px black solid;left: 250px;top: 463px;
}.leg-right::before {position: absolute;content: "";height: 30px;width: 15px;right: -35%;bottom: -10px;border-radius: 100%;background-color: black;transform: rotate(-90deg);
}

四肢位置代码比较简单,就是给予不同的边框位置并且旋转即可,然后 before 和 after 就是一个圆嘛,拿上背景色放到合适位置就可以了。

粽子角色该部分 html 如下:

<div class="rice-dumplings"><div class="rice-dumplings-body"><div class="rice-dumplings-body-left-top"></div><div class="rice-dumplings-body-right-top"></div><div class="rice-dumplings-body-left-bottom"></div><div class="rice-dumplings-body-right-bottom"></div></div><div class="rice-dumplings-face"><div class="rice-dumplings-eye eye-left"><div class="light postion"></div></div><div class="rice-dumplings-eye eye-right"><div class="light postion"></div></div><div class="cheek cheek-left"></div><div class="cheek cheek-right"></div><div class="smile"></div></div><div class="limbs"><div class="arm-left"></div><div class="arm-right"></div><div class="leg-left"></div><div class="leg-right"></div></div>
</div>

三、所有内容

最后加上文字后效果如下:

在这里插入图片描述

由于文字部分其样式就是很基础了,在此没必要赘述了,在最后我祝各位考生 金榜高粽

最后在这里附加上所有代码:

完整代码:

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Demo test</title><style>body {height: 100vh;width: 100vw;}.demo-area {height: 400px;width: 1200px;position: relative;background-color: #8bb72b;overflow: hidden;}body {display: flex;justify-content: center;align-items: center;height: 100vh;width: 100vw;}.rice-dumplings {height: 400px;width: 400px;position: absolute;transform: scale(0.5);left: 0;}.rice-dumplings-body-left-top,.rice-dumplings-body-right-top {position: absolute;background-color: #ffffff;height: 300px;width: 300px;border-top-left-radius: 100%;border: 4px black solid;border-right: 0px;}.rice-dumplings-body-left-top {left: 25px;top: 25px;transform: rotateY(30deg) rotate(-10deg);}.rice-dumplings-body-right-top {left: 235px;top: 25px;transform: rotateY(210deg) rotate(-10deg);}.rice-dumplings-body-left-bottom,.rice-dumplings-body-right-bottom {position: absolute;background: linear-gradient(to bottom right, #459712 15%, #8ad35d 80%, #459712 100%);border-top-left-radius: 0%;border: 4px black solid;}.rice-dumplings-body-left-bottom {height: 200px;width: 400px;top: 240px;left: 50px;border-bottom-left-radius: 100%;border-bottom-right-radius: 100%;border-top-right-radius: 100%;transform: rotate(15deg);}.rice-dumplings-body-right-bottom {height: 200px;width: 250px;top: 260px;left: 250px;border-bottom-left-radius: 100%;border-bottom-right-radius: 20%;border-top-right-radius: 100%;transform: rotateY(180deg);}.rice-dumplings-face {position: absolute;}.rice-dumplings-eye {position: absolute;height: 30px;width: 30px;border-radius: 100%;background-color: black;}.eye-left {left: 250px;top: 80px;}.eye-right {left: 350px;top: 70px;}.rice-dumplings-eye>.light {position: absolute;height: 10px;width: 10px;border-radius: 100%;background-color: white;}.rice-dumplings-eye>.postion {right: 20%;top: 10%;}.rice-dumplings-eye>.right {right: 20%;top: 10%;}.smile {position: absolute;width: 60px;height: 80px;background: linear-gradient( #fdc2a6 50%, #fa7768 50%);top: 120px;left: 300px;border: 4px black solid;border-top-left-radius: 8%;border-top-right-radius: 16%;border-bottom-left-radius: 80%;border-bottom-right-radius: 90%;}.cheek {position: absolute;top: 120px;background-color: #fd8373;border-radius: 100%;}.cheek::before {position: absolute;content: "/ / /";color: white;left: 23%;top: 13%;}.cheek-left {height: 40px;width: 80px;left: 190px;}.cheek-right {height: 40px;width: 60px;left: 380px;}.arm-left {position: absolute;height: 100px;width: 100px;border: 6px black solid;border-top: 0px;border-left: 0px;transform: rotate(45deg);left: 160px;top: 160px;}.arm-left::before {position: absolute;content: "";height: 50px;width: 30px;right: -15%;border-radius: 100%;background-color: black;}.arm-left::after {position: absolute;content: "";height: 20px;width: 10px;right: 8%;top: 15%;border-radius: 100%;background-color: black;transform: rotate(-45deg);}.arm-right {position: absolute;height: 130px;width: 100px;border-right: 6px black solid;left: 390px;top: -52px;transform: rotate(45deg);}.arm-right::before {position: absolute;content: "";height: 50px;width: 30px;right: -15%;border-radius: 100%;background-color: black;}.leg-left {position: absolute;height: 50px;width: 50px;border: 6px black solid;border-top: 0px;border-left: 0px;left: 160px;top: 435px;}.leg-left::before {position: absolute;content: "";height: 30px;width: 15px;left: -15%;bottom: -30px;border-radius: 100%;background-color: black;}.leg-right {position: absolute;height: 100px;width: 50px;border-right: 6px black solid;left: 250px;top: 463px;}.leg-right::before {position: absolute;content: "";height: 30px;width: 15px;right: -35%;bottom: -10px;border-radius: 100%;background-color: black;transform: rotate(-90deg);}/*太阳*/.sun {position: absolute;height: 150px;width: 150px;}.sun-body {position: absolute;height: 95px;width: 95px;background-color: #ff5f47;border-radius: 100%;border: 4px black solid;left: 30px;top: 30px;}.sun-eye {position: absolute;height: 10px;width: 10px;background-color: black;border-radius: 100%;}.sun-body>.eye-left {top: 60px;left: 70px;}.sun-body>.eye-right {top: 50px;left: 40px;}.sun-body>.smile {position: absolute;width: 10px;height: 10px;background-color: #fdc2a6 50%;top: 70px;left: 45px;border: 4px black solid;border-top-left-radius: 8%;border-top-right-radius: 16%;border-bottom-left-radius: 80%;border-bottom-right-radius: 90%;transform: rotate(20deg);}.sunshine-top-left,.sunshine-top-right,.sunshine-bottom-left,.sunshine-bottom-right {position: absolute;background-color: #a54a29;border-radius: 100%;}.sunshine-top-left {height: 10px;width: 10px;left: -30px;top: -20px;}.sunshine-top-right {height: 20px;width: 20px;left: 130px;top: 20px;}.sunshine-bottom-left {height: 30px;width: 30px;left: -20px;top: 120px;}.sunshine-bottom-right {height: 10px;width: 10px;left: 110px;top: 120px;}.circle {position: absolute;height: 400px;width: 1200px;}.circle1,.circle2,.circle3,.circle4,.circle5,.circle6,.circle7,.circle8 {position: absolute;border-radius: 100%;background-color: #0f893c;}.circle1 {height: 300px;width: 300px;bottom: -130px;}.circle2 {height: 150px;width: 150px;bottom: -30px;left: 270px}.circle3 {height: 30px;width: 30px;bottom: 10px;left: 430px}.circle4 {height: 60px;width: 60px;bottom: 10px;left: 530px}.circle5 {height: 160px;width: 260px;bottom: -130px;left: 530px}.circle6 {height: 60px;width: 160px;bottom: -30px;left: 730px}.circle7 {height: 60px;width: 160px;bottom: -30px;left: 780px}.circle8 {height: 160px;width: 160px;bottom: -80px;left: 880px}/*黄色圈*/.y-circle1,.y-circle2,.y-circle3,.y-circle4 {position: absolute;border-radius: 100%;background-color: #cdd622;}.y-circle1 {height: 60px;width: 60px;bottom: 180px;left: 880px}.y-circle2 {height: 30px;width: 30px;bottom: 280px;left: 780px}.y-circle3 {height: 10px;width: 10px;bottom: 380px;left: 720px}.y-circle4 {height: 20px;width: 20px;bottom: 290px;left: 680px}/* 云朵 */.cloud {position: absolute;width: 175px;height: 55px;background-color: white;border-radius: 100px;box-shadow: 0 1px 5px 0px rgba(50, 50, 50, 0.05);}.cloud:after,.cloud:before {content: "";position: absolute;background-color: white;}.cloud:after {width: 50px;height: 50px;border-radius: 50%;top: -54%;left: 14%;}.cloud:before {width: 100px;height: 100px;border-radius: 50%;top: -90%;right: 10%;}.cloud1 {transform: scale(1);opacity: 0.8;left: 100px;top: 410px;z-index: 1;}.cloud2 {left: 260px;top: 360px;transform: scale(1);opacity: 0.9;z-index: 1;}/* 文本内容 */.stroke {-webkit-text-stroke: 1px black;}.text1 {position: absolute;color: white;font-size: 30px;left: 600px;top: 30px;}.text2,.text3,.text4 {position: absolute;color: white;font-size: 80px;top: 40px;}.text5,.text6,.text7 {position: absolute;color: white;font-size: 80px;top: 130px;}.text2,.text5 {left: 600px;}.text3,.text6 {left: 603px;}.text4,.text7 {left: 605px;}.text2>.span1,.text3>.span1,.text4>.span1,.text5>.span1,.text6>.span1,.text7>.span1 {color: #fff644;-webkit-text-stroke: 2px black;}.rice-dumplings-text {background-color: #eef535;height: 300px;width: 100px;position: absolute;left: 380px;top: 40px;border-radius: 30px;color: #0f893c;writing-mode: vertical-rl;text-align: center;line-height: 100px;font-size: 80px;-webkit-text-stroke: 2px black;}/*C*/.C {position: absolute;top: 330px;left: 605px;height: 30px;width: 400px;background-color: #eef535;border-radius: 30px;text-align: center;line-height: 30px;}</style>
</head><body><div class="demo-area"><div class="cloud-main"><div class="cloud cloud1"></div><div class="cloud cloud2"></div></div><div class="circle"><div class="circle1"></div><div class="circle2"></div><div class="circle3"></div><div class="circle4"></div><div class="circle5"></div><div class="circle6"></div><div class="circle7"></div><div class="circle8"></div><div class="y-circle1"></div><div class="y-circle2"></div><div class="y-circle3"></div><div class="y-circle4"></div></div><div class="sun"><div class="sun-body"><div class="sun-eye eye-left"></div><div class="sun-eye eye-right"></div><div class="smile"></div><div class="sunshine-top-left"></div><div class="sunshine-top-right"></div><div class="sunshine-bottom-left"></div><div class="sunshine-bottom-right"></div></div></div><div class="rice-dumplings"><div class="rice-dumplings-body"><div class="rice-dumplings-body-left-top"></div><div class="rice-dumplings-body-right-top"></div><div class="rice-dumplings-body-left-bottom"></div><div class="rice-dumplings-body-right-bottom"></div></div><div class="rice-dumplings-face"><div class="rice-dumplings-eye eye-left"><div class="light postion"></div></div><div class="rice-dumplings-eye eye-right"><div class="light postion"></div></div><div class="smile"></div><div class="cheek cheek-left"></div><div class="cheek cheek-right"></div></div><div class="limbs"><div class="arm-left"></div><div class="arm-right"></div><div class="leg-left"></div><div class="leg-right"></div></div></div><div class="text"><h2 class="rice-dumplings-text">粽子</h2><h2 class="stroke text1">端午,祛毒平安</h2><h1 class="stroke text2"><span class="span1">旗开</span><span>得胜</span></h1><h1 class="stroke text3"><span class="span1">旗开</span><span>得胜</span></h1><h1 class="stroke text4"><span class="span1">旗开</span><span>得胜</span></h1><!--换个词--><h1 class="stroke text5"><span>金榜</span><span class="span1">高粽</span></h1><h1 class="stroke text6"><span>金榜</span><span class="span1">高粽</span></h1><h1 class="stroke text7"><span>金榜</span><span class="span1">高粽</span></h1></div><div class="C"><span> 1_bit 没事写的《无用CSS技巧系列内容》</span></div></div>
</body></html>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/286187.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【CASS精品教程】win10安装CAD+CASS过程中出现的错误问题及解决办法集锦

文章目录 1. 无法安装2. 提示DWF Viewer、AutoCAD2008未安装3. 安装完成后一直出现如下窗口4. Win10 64位 cass9.1+cad2008打开后出现Frame主框架程序没有加载。5. 注册程序无法运行,提示由于无法安装此service pack。1. 无法安装 解决办法:开启Administrator,以管理员身份…

(01).NET MAUI实战 建项目

1.概要本系列文章将会针对.NET MAUI实战开发的一些内容&#xff0c;会长期不间断更新我了解学习到的内容。当学习新的软件开发技术时&#xff0c;都会从基础建项目开始MAUI也不例外。ref&#xff1a;https://docs.microsoft.com/zh-cn/dotnet/maui/get-started/first-app?pivo…

Android Studio 引用aar包 更新后找不到新增的方法问题(踩坑)

明明已经更新了aar文件&#xff0c;但死活找不到新增的方法&#xff0c;代码提示里也找不到新增的方法名&#xff0c;但编译能编译&#xff0c;运行也一切正常&#xff0c;只是IDE一直提示错误&#xff0c;有强迫症的小猿好几天都想不明白。 其间有高手指教说&#xff1a;“那…

VMware Workstation与VMware vSphere的区别

在学完vSphere后&#xff0c;想起了VMware Workstation。这两个都是虚拟化的东西&#xff0c;这两者到底有什么本质的不同呢&#xff1f;顺着我的思路我开始将所学过的进行检索期望从中寻到一丝半点的线索。很快大脑中建立了两个对他们明显的标签 VMware Workstation&#xff1…

C语言试题三十七之求除一个2×m整型二维数组中最大元素的值,并将此值返回调用函数。

📃个人主页:个人主页 🔥系列专栏:C语言试题200例目录 💬推荐一款刷算法、笔试、面经、拿大公司offer神器 👉 点击跳转进入网站 ✅作者简介:大家好,我是码莎拉蒂,CSDN博客专家(全站排名Top 50),阿里云博客专家、51CTO博客专家、华为云享专家 1、题目 请编写一个…

RSA加密解密

http://files.cnblogs.com/files/liuJava/rsa.zip、 直接上工具类 JAR 和前台JS 都在上面的链接里 package my.tools.security;import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.ObjectInputStream; import java.io.Obj…

Atitit.js图表控件总结

Atitit.js图表控件总结 1. 为什么要使用图表1 2. 图表分类1 3. 数据可视化的优点1 4. 流行的js图表类库1 5. 参考2 1. 为什么要使用图表 因为要可视化 2. 图表分类 条形图、柱状图、折线图和饼图是图表中四种最常用的基本类型 分类 条形图、柱状图、折线图和饼图是图表中四种最…

Matlab图像处理函数大全(建议收藏)

文章目录 第1章: 图像显示与图像文件输入输出函数第2章: 图形绘制第3章: 图像类型和类型转换第4章: 图形用户界面工具第5章: 空间变换和图像配准第6章: 图像分析和统计第7章: 图像代数运算第8章: 图像增强第9章: 图像去模糊第10章: 线性滤波和变换第11章: 形态学操作…

Asp.net 批量导入Excel用户数据功能加强版

平时我们用Asp.net导入用户&#xff0c;一般是提供一个用户Excel表的模板&#xff0c;实际导入数据时并非有些人愿意按你的模版制表&#xff0c;因此对Asp.net导入功能进行加强&#xff0c;可以导入非模版化的Excel数据&#xff0c;并且支持一次处理多个Sheet表&#xff0c;方便…

C语言试题三十八之将s所指字符串中除了下标为偶数、同时ascii值也为偶数的字符外,其余的全都删除;串中剩余字符所形成的一个新串放在t所指的一个数组中。

📃个人主页:个人主页 🔥系列专栏:C语言试题200例目录 💬推荐一款刷算法、笔试、面经、拿大公司offer神器 👉 点击跳转进入网站 ✅作者简介:大家好,我是码莎拉蒂,CSDN博客专家(全站排名Top 50),阿里云博客专家、51CTO博客专家、华为云享专家 1、题目 请编写一个…

C#+Signalr+Vue实现B站视频自动回复评论,当一个最懒程序员!

Part1前言前几天刷到了程序员鱼皮的自动回复视频评论的视频&#xff0c;于是我也想来试试&#xff01;Part2开始第一步打开想要自动回复评论的视频url&#xff0c;打开调试模式&#xff01;然后找到可以触发评论的网络请求可以看到我们的oid是可以唯一确定视频的id,那么这个oid…

一张图不用,纯CSS 做个生日贺卡

朋友生日了&#xff0c;直接画&#xff0c;炫技并且表示本人闲的全身疼才会去拿CSS画画&#xff0c;以此嘲弄对方的加班&#xff1a; 既然贺卡做出来了&#xff0c;那就顺便介绍一下贺卡制作流程吧&#xff0c;其实也不是什么技术&#xff0c;也就是CSS 拼拼拼就可以了&#…

C语言试题三十九之将s所指字符串中除了下标为奇数、同时ascii值也为奇数的字符外,其余的全都删除;串中剩余字符所形成的一个新串放在t所指的一个数组中。

📃个人主页:个人主页 🔥系列专栏:C语言试题200例目录 💬推荐一款刷算法、笔试、面经、拿大公司offer神器 👉 点击跳转进入网站 ✅作者简介:大家好,我是码莎拉蒂,CSDN博客专家(全站排名Top 50),阿里云博客专家、51CTO博客专家、华为云享专家 1、题目 请编写一个…

The type android.support.v4.view.ScrollingView cannot be resolved. It is indirectly referenced from

前几天另一个项目使用RecyclerView控件&#xff0c;引用类库然后继承一切都很顺序 详细&#xff1a;http://www.cnblogs.com/freexiaoyu/p/5022602.html 今天打算将另一个项目的ListView控件也替换成RecyclerView以同样的方式引用了RecyclerView,引用地址请点击上面的链接查看 …

Mysql索引的类型和优缺点

索引是一种特殊的文件(InnoDB数据表上的索引是表空间的一个组成部分)&#xff0c;它们包含着对数据表里所有记录的引用指针。注&#xff1a;[1]索引不是万能的&#xff01;索引可以加快数据检索操作&#xff0c;但会使数据修改操作变慢。每修改数据记录&#xff0c;索引就必须刷…

Android Notification总结

Android Notification总结 目录[-] &#xfeff;&#xfeff;一、通知的主要功能 二、通知简介 三、通知的使用流程 四、使用NotificationCompat.Builder设置通知的属性&#xff1a; 五、管理通知 &#xfeff;&#xfeff;一、通知的主要功能 显示接收到短消息、即使消息等信…

C#-Linq源码解析之Any

前言在Dotnet开发过程中&#xff0c;Any作为IEnumerable的扩展方法&#xff0c;十分常用。本文对Any方法的关键源码进行简要分析&#xff0c;以方便大家日后更好的使用该方法。使用Any 确定序列中是否包含元素或存在元素满足指定条件。看这样一个例子&#xff0c;我们判断集合中…

python_getopt解析命令行输入参数的使用

[cpp] view plaincopyprint? import getopt import sys config { "input":"", "output":".", } #getopt三个选项&#xff0c;第一个一般为sys.argv[1:],第二个参数为短参数&#xff0c;如…

五、登录页倒计时制作《仿淘票票系统前后端完全制作(除支付外)》

一、登录功能的实现 首先打开在线编辑器进入我们的项目&#xff1a;https://editor.ivx.cn/ 上一节我们已经完成了基本页面的制作&#xff0c;在本节中&#xff0c;我们将会开始完成登录功能的实现。 实现登录功能需要增加一个用户组件&#xff1a; 这个用户组件是需要选择…