CSS常用示例100+专栏目录
本专栏记录的是经常使用的CSS示例与技巧,主要包含CSS布局,CSS特效,CSS花边信息三部分内容。其中CSS布局主要是列出一些常用的CSS布局信息点,CSS特效主要是一些动画示例,CSS花边是描述了一些CSS相关的库、知识点、理论篇章等。 因为常用所以记录、展示、分享,希望能给您带来帮助。
文章目录
- 效果图
- 源代码
- CSS基础知识点
- 结尾语
css实战中,怎样制作孔明灯,并重复的从下至上旋转飘移呢?本文中实现了这一效果,请参看效果图,源代码在后面。
效果图
源代码
/*
* @Author: 大剑师兰特(xiaozhuanlan),还是大剑师兰特(CSDN)
* @此源代码版权归大剑师兰特所有,可供学习或商业项目中借鉴,未经授权,不得重复地发表到博客、论坛,问答,git等公共空间或网站中。
* @Email: 2909222303@qq.com
* @weixin: gis-dajianshi
* @First published in CSDN
* @First published time: 2024-12-31
*/
<template>
<div class="container">
<div class="top55">
<h3>2025年新春,孔明灯向上飘移效果</h3>
<div class="author">大剑师兰特, 还是大剑师兰特,gis-dajianshi</div>
</div>
<div class="dajianshi">
<div class="kmd1">
<div class="light">
<div class="zi">福</div>
<div class="zi">禄</div>
<div class="zi top"></div>
<div class="zi">寿</div>
<div class="zi">禧</div>
</div>
</div>
<div class="kmd2">
<div class="light">
<div class="zi">福</div>
<div class="zi">禄</div>
<div class="zi top"></div>
<div class="zi">寿</div>
<div class="zi">禧</div>
</div>
</div>
<div class="kmd3">
<div class="light">
<div class="zi">福</div>
<div class="zi">禄</div>
<div class="zi top"></div>
<div class="zi">寿</div>
<div class="zi">禧</div>
</div>
</div>
</div>
</div>
</template>
<style scoped>
.container {
width: 1000px;
height: 600px;
margin: 50px auto;
border: 1px solid green;
}
.top55 {
margin: 0 auto 0px;
padding: 10px 0;
background: red;
color: #fff;
}
.top {
height: 80px;
box-shadow: none;
}
.dajianshi {
width: 100%;
height: 500px;
position: relative;
background-image: linear-gradient(30deg, #182C51, rgba(24, 44, 81, 0.53));
display: flex;
justify-content: center;
align-items: center;
z-index: 2;
}
/*孔明灯*/
.kmd1 {
position: absolute;
width: 0px;
height: 0px;
bottom: 20%;
transform: translate(-50%);
animation: rise 8s linear infinite;
left: 80%;
}
.kmd2 {
position: absolute;
width: 0px;
height: 0px;
bottom: 40%;
transform: translate(-50%);
animation: rise 7s linear infinite;
left: 50%;
}
.kmd3 {
position: absolute;
width: 0px;
height: 0px;
bottom: 50%;
transform: translate(-50%);
animation: rise 10s linear infinite;
left: 20%;
}
.light {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(#92090e, #ea3d2d, #fbf885);
transform-style: preserve-3d;
transform-origin: center center;
transform: rotateX(-15deg) rotateY(-30deg) translateZ(0px);
animation: go 6s linear infinite;
}
.zi {
position: absolute;
width: 80px;
height: 120px;
text-align: center;
line-height: 120px;
font-size: 50px;
border-radius: 15px;
border: 1px solid #9b4400;
box-shadow: 0px 0px 30px yellow;
}
.zi:nth-child(1) {
background: -webkit-linear-gradient(-90deg, #92090e, #ea3d2d, #fbf885);
transform: rotateX(0deg) translateZ(40px);
}
.zi:nth-child(2) {
background: -webkit-linear-gradient(90deg, #FF0, #F30);
transform: rotateY(180deg) translateZ(40px);
}
.zi:nth-child(3) {
background: #F30;
transform: rotateX(-90deg) translateZ(-40px);
}
.zi:nth-child(4) {
background: -webkit-linear-gradient(-90deg, #F30, #ff0);
transform: rotateY(90deg) translateZ(40px);
}
.zi:nth-child(5) {
background: -webkit-linear-gradient(-90deg, #F30, #ff0);
transform: rotateY(-90deg) translateZ(40px);
}
/*晃动动画*/
@keyframes go {
0% {
transform: rotateX(-45deg) rotateY(-30deg) translateZ(0px);
}
100% {
transform: rotateX(45deg) rotateY(360deg) translateZ(0px);
}
}
/*飘走*/
@keyframes rise {
0% {
bottom: 0%;
scale: 1.5;
}
100% {
bottom: 100%;
scale: 0.5;
}
}
</style>
CSS基础知识点
1.CSS样式表
2.基础选择器:(1)标签选择器,(2)类选择器,(3)id选择器,(4)通配符选择器
3.复合选择器:(1)后代选择器,(2)子选择器,(3)并集选择器,(4)交集选择器,(5)伪类选择器。
4.字体样式属性:(1)字体大小font-size,(2)字体类型font-family,(3)字体粗细font-weight,(4)字体风格font-style
5.文本外观样式:(1)设置文本颜色color,(2)word-spacing,(3)letter-spacing,(4)line-height,(5)text-transform,(6)text-decoration,(7)text-align,(8)text-indent,(9)white-space
6.文本外观属性:(1)text-shadow,(2)overflow
7.CSS层叠性、继承性及优先级
8.边框介绍
8.1边框属性:(1)border-style,(2)border-width,(3)border-color,(4)border-radius
8.2内边距属性
8.3外边距属性
8.4box-shadow
9.背景属性
9.1背景颜色
9.2背景图片:(1)background-repeat,(2)background-position,(3)background-attachment,(4)background-size,(5)background-origin,(6)background-clip,(7)复合写法,(8)不透明
10.元素的类型
11.span标签
12.display
13.表格标签:(1)table标签,(2)tr标签,(3)td标签,(4)th标签,(5)表格边框,(6)折叠边框,(7)表格宽度和高度,(8)表格边框间距border-spacing,(9)表格标题位置caption-side
14.表单
14.1创建表单:(1)标签
14.2表单控件:(1)input控件,(2)input/标签的type属性,(3)textarea控件,(4)select控件
15.CSS盒子模型:(1)边框(border),(2)内边距(padding),(3)外边距(margin),(4)清除内外边距,(5)盒子模型
16.浮动布局:(1)传统网页布局,(2)浮动简介,(3)浮动特性,(4)清除浮动
17.定位布局:(1)定位组成,(2)相对定位relative,(3)绝对定位absolute,(4)子绝父相,(5)固定定位fixed,(6)定位叠放次序z-index,(7)定位拓展
三.其他
1.圆角边框:(1)圆形,(2)圆角矩形
2.盒子阴影
3.文字阴影
4.用户界面样式:(1)鼠标样式 cursor,(2)轮廓线 outline,(3)防止拖拽文本域 resize,
5.过渡 transition
结尾语
CSS的应用无处不在,希望某个片段就能帮助你,欢迎学习GIS的朋友一起交流。
《 Openlayers 综合示例200+ 》,
《 leaflet示例教程100+ 》,
《 Cesium示例教程100+》,
《MapboxGL示例教程100+》。