文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

CSS3如何实现童年的纸飞机

2023-06-08 06:20

关注

这篇文章主要介绍CSS3如何实现童年的纸飞机 ,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

基本全用css来实现,只有一小部分的js

首先看一下飞机的构造

CSS3如何实现童年的纸飞机

灰色区域为可折叠区域

白色区域为机身

三角形由border画出来的再经过各种平移翻转变成上图

写之前再补充个知识点:

我们颜色的设置不用rgba,

用hsl() h: 色调 0- 360 0(或360)表示红色,120表示绿色,240表示蓝色

   s : 饱和度 0% -100%

   l : 亮度 0% - 100%

先看效果才有动力:

CSS3如何实现童年的纸飞机

HTML:

<!--童年的纸飞机--><div class="airplane">    <div class="front-end show-front">        <!--宽高自适应的文本框-->        <div class="text-input" contenteditable = true></div>        <div class="fly">            fly        </div>    </div>    <div class="backup-end show-backup">        <div class="left-plane">            <!--左上角折叠区域-->            <div class="left-top fold"></div>            <!--左下角折叠区域-->            <div class="left-bottom fold"></div>            <!--机身-->            <div class="wing wing1"></div>            <div class="wing wing2"></div>        </div>        <div class="right-plane">            <!--右上角折叠区域-->            <div class="right-top fold"></div>            <!--右下角折叠区域-->            <div class="right-bottom fold"></div>            <!--机身-->            <div class="wing wing3"></div>            <div class="wing wing4"></div>        </div>    </div></div>

css:

body{    width: 100%;    height: 680px;    background-color: #000;    background-repeat: no-repeat;    overflow: hidden;    transition: all 2s linear;}.airplane{    width: 100%;    height: 100%;    -webkit-perspective: 800px;    -webkit-perspective-origin: 50% 50%;}.front-end.show-front{    transform: rotateY(0deg);}.front-end{    background: rgba(255, 255, 255, 0.15);    *background: hsl(0, 0%, 88%);        transform: rotateY(-180deg);    position: relative;    box-sizing: border-box;    padding: 20px;    text-align: center;    backface-visibility: hidden;    width: 400px;    height: 260px;    top: 240px;    transition: all 0.8s ease-in-out;    margin: auto;}.text-input{    width: 100%;    max-width:360px;    min-height:100px;    padding: 10px;    box-sizing: border-box;    height: 140px;    background-color: #ffffff;    font-smoothing: subpixel-antialiased;    font-size: 18px;    text-align: left;    font-family: "Microsoft YaHei",Helvetica, Arial, Verdana;    line-height: 20px;}.fly{    transition: all 0.3s ease-in-out;        border: 2px solid hsl(194, 100%, 72%);    margin: 15px 0;    padding: 10px;    outline: none;    font-size: 18px;    cursor: pointer;    font-family: "Microsoft YaHei";    background-color: hsl(0, 0%, 94%);    border-radius:4px;    user-select: none;}.fly:active{    transform: scale(0.85);    transition: all 10ms ease-in-out;    background-color: hsl(0, 0%, 85%);    border: 2px solid hsl(194, 30%, 55%);}.backup-end{    perspective: 600px;    perspective-origin: 200px 131px;    transform-style: preserve-3d;    transition: all 0.8s ease-in-out;    backface-visibility: hidden;    position: relative;    width: 400px;    height: 260px;    margin: auto;}.backup-end.show-backup{    transform: rotateY(180deg);}.left-plane, .right-plane{    transform-style: preserve-3d;    width: 200px;    height: 260px;    display: block;    position: absolute;    top: 0px;    transition: all 1s ease-in-out;}.left-plane{    transform: rotateZ(0deg);    transform-origin: 100% 50% 0;    left: 0;}.right-plane{    transform: rotateZ(0deg);    transform-origin: 0% 50%;    left: 199px;}.wing{    position: absolute;    transform-origin: 0 0 0;    perspective: 1px;    perspective-origin: 50% 50%;    backface-visibility: hidden;    transition: all 1.3s linear;    box-sizing: border-box;    margin: 0;    padding: 0;    background: none;    border: none;    border-top: 240px solid hsla(0, 0%, 0%, 0);    border-bottom: 0px solid hsla(0, 0%, 0%, 0);    border-right: 100px solid hsl(0, 0%, 88%);    width: 0;    height: 0;    bottom: 0;}.wing1 {    transform-origin: 100% 100%;    transform: translateY(-38px) translateX(8px) rotateZ(22.62deg) skewY(-22.62deg);}.wing2 {    transform: rotateZ(22.62deg);    transform-origin: 100% 100%;    border-left: 100px solid hsl(0, 0%, 88%);    border-right: none;    left: 100px;}.wing3 {    transform: rotateZ(-22.62deg);    transform-origin: 0% 100%;    border-right: 100px solid hsl(0, 0%, 88%);}.wing4 {    transform: translateY(-38px) translateX(-8px) rotateZ(-22.62deg) skewY(22.62deg);    transform-origin: 0% 100%;    border-right: none;    border-left: 100px solid hsl(0, 0%, 88%);    left: 100px;}.left-top.fold{    position: absolute;    transform-origin: 100px 112px;    transition-delay: 1300ms;    width: 0;    height: 0;    top: 0;    border-right: 202px solid hsla(0, 0%, 0%, 0);    border-bottom: 202px solid hsla(0, 0%, 0%, 0);    border-top: 222px solid hsl(0, 0%, 88%);}.right-top.fold{    position: absolute;    right: 0;    border-left: 202px solid hsla(0, 0%, 0%, 0);    border-bottom: 202px solid hsla(0, 0%, 0%, 0);    border-top: 222px solid hsl(0, 0%, 88%);    transform-origin: 96px 112px;    transition-delay: 1650ms;}.left-bottom.fold{    position: absolute;    transform-origin: 109px 0;    transition-delay: 2100ms;    width: 109px;    height: 38px;    background: hsl(0, 0%, 88%);    bottom: 0;    left: 0;}.right-bottom.fold{    position: absolute;    transform-origin: 0 0;    transition-delay: 2450ms;    width: 109px;    height: 38px;    background: hsl(0, 0%, 88%);    bottom: 0;    right: 0;}.left-bottom.fold:after {    position: absolute;    content: "";    border-right: 92px solid hsla(0, 0%, 0%, 0);    border-bottom: 39px solid hsl(0, 0%, 88%);    border-top: 37px solid hsla(0, 0%, 0%, 0);    left: 109px;    bottom: 0;}.right-bottom.fold:after {    position: absolute;    content: "";    border-left: 92px solid hsla(0, 0%, 0%, 0);    border-bottom: 39px solid hsl(0, 0%, 88%);    border-top: 37px solid hsla(0, 0%, 0%, 0);    left: -92px;    bottom: 0;}.fold {    transition: transform 800ms ease-out;    backface-visibility: hidden;    position: absolute;    background-color: transparent;    z-index: 0;    width: 0;}.left-top.fold.curved {    transform: rotate3d(1,-1.11,0,180deg);}.left-bottom.fold.curved {    transform: rotate3d(2.4867,1,0,-180deg);}.right-top.fold.curved {    transform: rotate3d(1,1.11,0,180deg);}.right-bottom.fold.curved {    transform: rotate3d(-2.4867,1,0,180deg);}.airplane.hover {    transform: rotateX(54deg) rotateY(-10deg) rotateZ(25deg);    transition-delay: 0.5s;}.backup-end.hover .left-plane {    transform: rotateY(60deg);}.backup-end.hover .right-plane {    transform: rotateY(-60deg);}.backup-end.hover .wing1 {    transform: translateY(-38px) translateX(8px) rotateZ(22.62deg) rotateY(-60deg) skewY(-22.62deg);    border-right: 100px solid hsl(0, 0%, 95%);}.backup-end.hover .wing2 {    border-left: 100px solid hsl(0, 0%, 85%);}.backup-end.hover .wing4 {    transform: translateY(-38px) translateX(-8px) rotateZ(-22.62deg) rotateY(60deg) skewY(20deg);    border-left: 100px solid hsl(0, 0%, 95%);}.backup-end.hover .wing3 {    border-right: 100px solid hsl(0, 0%, 71%);}.backup-end.hover .curved {    display: none;}.backup-end.hover.fly_away_first {    transform: translateX(-100px) translateZ(300px) rotateX(42deg) rotateY(-11deg) rotateZ(27deg);    transition-delay: 0ms;    transition-duration: 0.4s;    transition-timing-function: ease-out;}.backup-end.hover.fly_away_first.fly_away {    transform: translateX(600px) translateY(-400px) translateZ(-5000px) rotateX(66deg) rotateY(-12deg) rotateZ(36deg);    transition: transform 2s ease-out, opacity 1.5s 0.5s linear;    opacity: 0;}

js:

// 童年的纸飞机const fly = document.getElementsByClassName('fly')[0];const front = document.getElementsByClassName('front-end')[0];const backup = document.getElementsByClassName('backup-end')[0];const fold = document.getElementsByClassName('fold');fly.addEventListener('click', () => {    first().then(second).then(third).then(fourth).then(fifth).catch((err)=> {        console.log(err)    });}, false);// 第一步function first() {    return new Promise((suc, err) => {        setTimeout(() => {            // 隐藏信息面板            front.classList.remove('show-front');            // 翻转至正面            backup.classList.remove('show-backup');            // 折叠效果(左翼、右翼)            for (let i = 0; i < fold.length; i++) {                fold[i].classList.add('curved')            }            // 颜色变换            document.body.style.backgroundColor = "#54575A";            suc(1)        }, 200)    })}function second() {    return new Promise((suc, err) => {        setTimeout(function () {            backup.classList.add('hover');            document.body.style.backgroundColor = "#AD8BD8";            suc(2)        }, 2800);    })}//步骤三:飞机后退助跑function third() {    return new Promise((suc, err) => {        setTimeout(function () {            backup.classList.add('fly_away_first');            document.body.style.backgroundColor = "#6E99C4";            suc(3)        }, 2000);    })}// 步骤四:飞机向前飞翔至消失function fourth() {    return new Promise((suc, err) => {        setTimeout(function () {            backup.classList.add('fly_away');            document.body.style.backgroundColor = "#3F9BFF";            suc(4)        }, 600);    })}function fifth() {    return new Promise((suc, err) => {        setTimeout(function () {            front.classList.add('show-front');            backup.classList.remove('fly_away','fly_away_first','hover');            backup.classList.add('show-backup');            for (let i = 0; i < fold.length; i++) {                fold[i].classList.remove('curved')            }            document.body.style.backgroundColor = "#000";            suc(5)        }, 3000);    })}

以上是“CSS3如何实现童年的纸飞机 ”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯