HTML+CSS制作一个动画(二)

简介: HTML+CSS制作一个动画

HTML+CSS制作一个动画(一)https://developer.aliyun.com/article/1382469


CSS部分结构如下:

:root {
    --background-color: #f5f5f5;
    --border-color: #7591AD;
    --text-color: #34495e;
    --color1: #EC3E27;
    --color2: #fd79a8;
    --color3: #6aa6d4;
    --color4: #00b894;
    --color5: #fdcb6e;
    --color6: #e056fd;
    --color7: #04a704;
    --color8: #BDC581;
}
*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 14px;
}
body {
    width: 100vw;
    height: 100vh;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif, Arial, 'Microsoft Yahei';
}
.channel {
    position: absolute;
    width: 80%;
    text-align: center;
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5vmin;
    font-weight: bold;
    color: #35353588;
    z-index: 10000;
}
.container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    /* background-color: #00b894; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* **********
 * 速度切换开关
 * 不用checkbox实现,我们用js控制样式来实现
 * **********/
#switch {
    position: relative;
    width: 60px;
    height: 30px;
    border: 2px solid #333;
    border-radius: 30px;
    cursor: pointer;
}
#switch::before,
#switch::after {
    position: absolute;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 800;
    padding: 0 20px;
    /* background-color: #0984e3; */
    /* 取消前后状态名称的鼠标效果以及点击事件响应 */
    cursor: initial;
    pointer-events: none;
}
#switch::before {
    content: 'fast';
    right: 100%;
    color: var(--color8);
}
#switch::after {
    content: 'slow';
    left: 100%;
    color: var(--color3);
}
/* 默认情况 */
#switch .circle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 50%;
    box-shadow: inset 4px -2px 0 0 var(--color8);
    transition: all .3s cubic-bezier(.86, 1.51, .74, 1);
}
/* 点击选中的情况 */
#switch.switched .circle {
    left: calc(100% - 20px - 3px);
    box-shadow: inset 4px -2px 0 0 var(--color3);
}
/* **********
 * 这里是主画布外框
 * **********/
.main {
    position: relative;
    width: 400px;
    height: 300px;
    border: 2px solid #333;
    margin-top: 20px;
    overflow: hidden;
}
/* **********
 * 这里是太阳
 * **********/
.sun {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 50%;
    left: 270px;
    top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: sun_rotate 10s linear infinite;
}
@keyframes sun_rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
.sun span {
    position: absolute;
    display: block;
    height: 2px;
    width: 16px;
    background-color: #333;
    box-shadow: 4px 4px 0 0 var(--color5);
    transform: rotate(calc(var(--i) * 45deg)) translateX(-20px);
    animation: sun_ray 1s linear infinite;
    animation-delay: calc(var(--i) * -0.5s);
}
@keyframes sun_ray {
    0% {
        transform: rotate(calc(var(--i) * 45deg)) translateX(-20px) scaleX(1)
    }
    50% {
        transform: rotate(calc(var(--i) * 45deg)) translateX(-20px) scaleX(0.6)
    }
    100% {
        transform: rotate(calc(var(--i) * 45deg)) translateX(-20px) scaleX(1)
    }
}
/* **********
 * 这里是群山
 * **********/
.mountain {
    position: absolute;
    border: 2px solid #333;
    transform: rotate(45deg);
}
.mountain.a {
    width: 14px;
    height: 14px;
    left: 80px;
    bottom: 35px;
}
.mountain.b {
    width: 18px;
    height: 18px;
    left: 130px;
    bottom: 45px;
}
.mountain.c {
    width: 20px;
    height: 20px;
    left: 190px;
    bottom: 60px;
}
.mountain.d {
    width: 2px;
    height: 2px;
    left: 240px;
    bottom: 62px;
    border-bottom: none;
}
.mountain.e {
    width: 14px;
    height: 14px;
    left: 285px;
    bottom: 41px;
}
.mountain.a::after,
.mountain.b::after,
.mountain.c::after,
.mountain.d::after,
.mountain.e::after,
.mountain.a::before,
.mountain.b::before,
.mountain.c::before,
.mountain.d::before,
.mountain.e::before {
    position: absolute;
    content: '';
    background-color: #333;
}
.mountain.a::after,
.mountain.b::after,
.mountain.c::after,
.mountain.d::after,
.mountain.e::after {
    left: -2px;
    top: 100%;
    width: 2px;
}
.mountain.a::after {
    height: 70px;
}
.mountain.b::after {
    height: 50px;
}
.mountain.c::after {
    height: 70px;
}
.mountain.d::after {
    height: 14px;
}
.mountain.e::after {
    height: 18px;
}
.mountain.a::before,
.mountain.b::before,
.mountain.c::before,
.mountain.d::before,
.mountain.e::before {
    top: -2px;
    left: 100%;
    height: 2px;
}
.mountain.a::before {
    width: 14px;
    box-shadow: -5px -5px 0 0 var(--color4);
}
.mountain.b::before {
    width: 14px;
    box-shadow: -5px -5px 0 0 var(--color4);
}
.mountain.c::before {
    width: 36px;
    box-shadow: -14px -5px 0 0 var(--color4);
}
.mountain.d::before {
    width: 55px;
    box-shadow: 5px 5px 0 0 var(--color4);
}
.mountain.e::before {
    width: 70px;
    box-shadow: 5px 5px 0 0 var(--color4);
}
/* **********
 * 这里是云和风
 * **********/
/* .main {
    overflow: visible;
} */
.cloud_wind_wrap_fast {
    /* (画布大小-去两个边框)*3 */
    width: 1188px;
    height: 100%;
    /* background-color: #af401455; */
    animation: fly 3s linear infinite;
    animation-play-state: running;
}
.slow .cloud_wind_wrap_fast {
    animation-play-state: paused;
}
.cloud_wind_wrap_slow {
    width: 1188px;
    height: 100%;
    /* background-color: #56fd7255; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: fly 6s linear infinite;
    animation-play-state: paused;
}
.slow .cloud_wind_wrap_slow {
    animation-play-state: running;
}
.cloud_wind_group {
    position: relative;
    width: 100%;
    height: 100%;
    /* background-color: #00b894; */
    /* animation: fly 12s linear infinite; */
    /* animation-delay: calc(var(--i) * -6s); */
}
@keyframes fly {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-33.33333333333333%);
    }
}
/* **********
 * 今天只做云,明天风会来
 * **********/
.cloud {
    position: absolute;
    width: 60px;
    height: 45px;
}
.cloud.a {
    left: 60px;
    top: 20px;
}
.cloud.b {
    left: 160px;
    top: 80px;
    transform: rotateY(180deg);
}
.cloud.c {
    left: 280px;
    top: 50px;
}
.cloud span {
    position: absolute;
    display: block;
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 50%;
}
.cloud span:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 0;
    bottom: 0;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-45deg);
}
.cloud span:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 10px;
    bottom: 10px;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
}
.cloud span:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 15px;
    bottom: 12px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(50deg);
    box-shadow: 0 -3px 0 0 var(--color3);
}
.cloud span:nth-child(4) {
    width: 27px;
    height: 27px;
    left: 31px;
    bottom: 0px;
    border-left-color: transparent;
    transform: rotate(0deg);
    box-shadow: 2px -1px 0 0 var(--color3);
}
.cloud span:nth-child(5) {
    width: 35px;
    height: 15px;
    left: 10px;
    bottom: 0;
    border-radius: 0;
    border-width: 0 0 2px 0;
}
/* 中间云的阴影 */
.cloud.b span:nth-child(1) {
    box-shadow: 0px -3px 0 0 var(--color3);
}
.cloud.b span:nth-child(2) {
    box-shadow: -2px -1px 0 0 var(--color3);
}
.cloud.b span:nth-child(3) {
    box-shadow: -3px -1px 0 0 var(--color3);
}
.cloud.b span:nth-child(4) {
    box-shadow: none;
}
/* **********
 * 风来了
 * **********/
/* 大风 */
.wind {
    position: absolute;
    width: 10px;
    height: 10px;
    /* background-color: #EC3E27; */
}
.wind.a {
    top: 100px;
    left: 40px;
}
.wind.b {
    top: 140px;
    left: 260px;
}
/* 大风纹理 */
.wind span,
.wind span::before,
.wind span::after {
    position: absolute;
    background-color: #555;
    height: 3px;
}
.wind span::before,
.wind span::after {
    content: '';
}
.wind span,
.wind span::after {
    box-shadow: 4px 4px 0 -1px var(--color3);
}
/* 大风纹理1 */
.wind span:nth-child(1) {
    top: 0;
    left: 0;
    width: 40px;
}
.wind span:nth-child(1)::before {
    width: 10px;
    height: 10px;
    left: -4px;
    bottom: 1px;
    background-color: transparent;
    border: 3px solid #555;
    border-radius: 50%;
    border-color: transparent transparent #555 #555;
    transform: rotate(45deg);
}
.wind span:nth-child(1)::after {
    width: 10px;
    top: 0;
    left: 110%;
}
/* 大风纹理2 */
.wind span:nth-child(2) {
    top: 8px;
    left: -20px;
    width: 40px;
}
.wind span:nth-child(2)::before {
    width: 10px;
    height: 10px;
    left: -4px;
    bottom: 1px;
    background-color: transparent;
    border: 3px solid #555;
    border-radius: 50%;
    border-color: transparent transparent #555 #555;
    transform: rotate(45deg);
}
.wind span:nth-child(2)::after {
    width: 50px;
    top: 0;
    left: 110%;
}
/* 大风纹理3 */
.wind span:nth-child(3) {
    top: 15px;
    left: 50px;
    width: 10px;
}
.wind span:nth-child(3)::before {
    width: 40px;
    top: 0;
    right: 140%;
}
.wind span:nth-child(3)::after {
    width: 40px;
    top: 0;
    left: 140%;
}
/* 大风纹理4 */
.wind span:nth-child(4) {
    top: 20px;
    left: 30px;
    width: 40px;
}
.wind span:nth-child(4)::before {
    width: 10px;
    top: 0;
    right: 120%;
}
.wind span:nth-child(4)::after {
    width: 10px;
    top: 0;
    left: 120%;
}
/* 小风 */
.wind_small {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: #00b894; */
}
/* 小风纹理 */
.wind_small span,
.wind_small span::after {
    position: absolute;
    height: 3px;
    background-color: #555;
    box-shadow: 4px 4px 0 -1px var(--color3);
}
.wind_small span::after {
    content: '';
    width: 50%;
    top: 0;
    left: 120%;
}
.wind_small span:nth-child(1) {
    top: 12px;
    left: 5px;
    width: 50px;
}
.wind_small span:nth-child(2) {
    top: 32px;
    left: 120px;
    width: 20px;
}
.wind_small span:nth-child(3) {
    top: 152px;
    left: 120px;
    width: 20px;
}
.wind_small span:nth-child(3)::after {
    display: none;
}
.wind_small span:nth-child(4) {
    top: 172px;
    left: 60px;
    width: 20px;
}
.wind_small span:nth-child(5) {
    top: 60px;
    left: 140px;
    width: 10px;
}
.wind_small span:nth-child(5)::after {
    display: none;
}
.wind_small span:nth-child(6) {
    top: 20px;
    left: 300px;
    width: 30px;
}
.wind_small span:nth-child(7) {
    top: 115px;
    left: 330px;
    width: 30px;
}
.wind_small span:nth-child(8) {
    top: 170px;
    left: 200px;
    width: 10px;
}
.wind_small span:nth-child(8)::after {
    display: none;
}
/* **********
 * 这是四棵树
 * **********/
.tree_wrap,
.tree {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    /* background-color: #00b89466; */
    transform-origin: bottom;
    transition: all 0.2s linear;
}
.tree {
    /* background-color: #e056fd55; */
    animation: tree_move 1s linear infinite;
    transform-origin: bottom;
}
.slow .tree_wrap {
    transform: skewX(-10deg);
}
@keyframes tree_move {
    0%,
    100% {
        transform: skewX(16deg);
    }
    20% {
        transform: skewX(18deg);
    }
    40% {
        transform: skewX(20deg);
    }
    60% {
        transform: skewX(17deg);
    }
    80% {
        transform: skewX(18deg);
    }
}
.tree span {
    position: absolute;
    display: block;
    width: 2px;
    height: 10px;
    bottom: 0;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tree span:nth-child(1) {
    left: 70px;
}
.tree span:nth-child(2) {
    left: 150px;
}
.tree span:nth-child(3) {
    left: 180px;
}
.tree span:nth-child(4) {
    left: 330px;
}
.tree span::before,
.tree span::after {
    position: absolute;
    content: '';
    border: 2px solid #333;
    width: 12px;
    height: 26px;
    bottom: 100%;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: inset -3px 4px 2px 0 var(--color7);
}
.tree span::after {
    border-color: transparent var(--color7) transparent transparent;
    background-color: transparent;
    transform: rotate(-15deg) translate(5px, -4px);
    box-shadow: none;
}
/* **********
 * 这是三个风车
 * **********/
.windmill_wrap {
    position: absolute;
    width: 100%;
    height: 120px;
    left: 0;
    bottom: 0;
    /* background-color: #00b89466; */
}
.windmill {
    position: absolute;
    /* width: 114px; */
    height: 100px;
    left: 220px;
    bottom: 0;
    /* background-color: #BDC581; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.windmill.left {
    left: 100px;
    transform: scale(0.75);
    transform-origin: bottom;
}
.windmill.right {
    left: 300px;
    transform: scale(0.8);
    transform-origin: bottom;
}
/* 风车柱子 */
.windmill .pole {
    position: absolute;
    width: 14px;
    height: 120px;
    bottom: 0px;
    /* background-color: #535c0f; */
    perspective: 70px;
}
.windmill .pole::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 3px solid #333;
    border-width: 0 3px;
    transform-origin: bottom;
    transform: rotateX(15deg);
}
/* 风车头部 */
.windmill .head {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0;
    /* background-color: #EC3E27; */
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: windmill_fan_rotate 4s linear infinite;
    animation-play-state: paused;
}
.slow .windmill .head {
    animation-play-state: running;
}
/* 扇叶组合 */
.windmill .head .fan {
    position: absolute;
    width: 10px;
    height: 10px;
    /* background-color: #27ec72; */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: windmill_fan_rotate 2s linear infinite;
    animation-play-state: running;
}
.slow .windmill .head .fan {
    animation-play-state: paused;
}
/* 扇叶组合中心圆 */
.windmill .head .fan::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 3px solid #333;
    border-radius: 50%;
}
/* 扇叶 */
.windmill .head .fan span {
    position: absolute;
    width: 70px;
    height: 15px;
    background-color: #fff;
    border: 3px solid #333;
    border-radius: 100%;
    transform: rotate(calc(var(--i) * 120deg)) translateX(30px);
}
/* 旋转动画 */
@keyframes windmill_fan_rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
相关文章
|
1月前
纯css3实现的百分比渐变进度条加载动画源码
纯css3实现的百分比渐变进度条加载动画特效源码
54 31
|
15天前
|
Web App开发 移动开发 JavaScript
纯CSS3+SVG实现的节日庆祝五彩纸屑动画效果源码
这是一款基于纯CSS3+SVG实现的节日庆祝五彩纸屑动画效果源码。画面中左下角是一个圆锥形礼炮卡通效果,呈现出节日庆祝时礼花爆破、五彩纸屑纷飞的动画特效。整体动画效果采用纯css3+svg实现,没有引入任何外部图形或js脚本元素。建议使用支持HTML5与css3效果较好的火狐(Firefox)或谷歌(Chrome)等浏览器预览本源码。
32 6
|
15天前
|
Web App开发 移动开发 前端开发
html5 canvas五彩碎纸屑飘落动画特效
h5 canvas飘落纸片动画是一款实现五彩纸屑飘落的背景动画特效,基于canvas绘制的空中飘落的纸屑片动画特效,适用于网页动态背景效果代码。简单使用,欢迎下载!代码适用浏览器:搜狗、360、FireFox(建议)、Chrome、Safari、Opera、傲游、世界之窗,是一款不错的的特效插件,希望大家喜欢!
33 5
|
25天前
|
前端开发 JavaScript UED
CSS滚动效果和视差滚动的原理、应用及其对用户体验的影响。从平滑滚动到元素跟随,再到滚动触发动画
本文探讨了CSS滚动效果和视差滚动的原理、应用及其对用户体验的影响。从平滑滚动到元素跟随,再到滚动触发动画,这些效果增强了页面的吸引力和互动性。视差滚动通过不同层次元素的差异化移动,增加了页面的深度感和沉浸感。文章还讨论了实现方法、性能优化及案例分析,旨在为设计师和开发者提供实用指导。
51 7
|
25天前
|
前端开发 测试技术 定位技术
如何利用HTML和CSS构建企业级网站的全过程。从项目概述到页面结构设计,再到HTML结构搭建与CSS样式设计,最后实现具体页面并进行优化提升,全面覆盖了网站开发的关键步骤
本文深入介绍了如何利用HTML和CSS构建企业级网站的全过程。从项目概述到页面结构设计,再到HTML结构搭建与CSS样式设计,最后实现具体页面并进行优化提升,全面覆盖了网站开发的关键步骤。通过实例展示了主页、关于我们、产品展示、新闻动态及联系我们等页面的设计与实现,强调了合理布局、美观设计及用户体验的重要性。旨在为企业打造一个既专业又具吸引力的线上平台。
50 7
|
25天前
|
前端开发 JavaScript 搜索推荐
HTML与CSS在Web组件化中的核心作用及前端技术趋势
本文探讨了HTML与CSS在Web组件化中的核心作用及前端技术趋势。从结构定义、语义化到样式封装与布局控制,两者不仅提升了代码复用率和可维护性,还通过响应式设计、动态样式等技术增强了用户体验。面对兼容性、代码复杂度等挑战,文章提出了相应的解决策略,强调了持续创新的重要性,旨在构建高效、灵活的Web应用。
32 6
|
25天前
|
存储 移动开发 前端开发
高效的 HTML 与 CSS 编写技巧,涵盖语义化标签、文档结构优化、CSS 预处理、模块化设计、选择器优化、CSS 变量、媒体查询等内容
本文深入探讨了高效的 HTML 与 CSS 编写技巧,涵盖语义化标签、文档结构优化、CSS 预处理、模块化设计、选择器优化、CSS 变量、媒体查询等内容,旨在提升开发效率、网站性能和用户体验。
36 5
|
25天前
|
前端开发 JavaScript UED
在数字化时代,Web 应用性能优化尤为重要。本文探讨了CSS与HTML在提升Web性能中的关键作用及未来趋势
在数字化时代,Web 应用性能优化尤为重要。本文探讨了CSS与HTML在提升Web性能中的关键作用及未来趋势,包括样式表优化、DOM操作减少、图像优化等技术,并分析了电商网站的具体案例,强调了技术演进对Web性能的深远影响。
28 5
|
1月前
CSS3制作的聚光灯下倒影文字选装动画特效源码
CSS3聚光灯下倒影文字特效是一段基于CSS3实现的聚光灯下带倒影的文字旋转动画效果代码,具有真实的视觉感,同时文字还会在旋转过程中显示出灯光的反射效果,很有意思,欢迎对此段代码感兴趣的朋友前来下载使用。
30 6
|
26天前
|
前端开发
基于canvas实现的彩色纸屑组成文字3d动画HTML源码
基于canvas实现的彩色纸屑组成文字3d动画HTML源码
20 0
基于canvas实现的彩色纸屑组成文字3d动画HTML源码