我的编程空间,编程开发者的网络收藏夹
学习永远不晚

CSS3如何实现童年的纸飞机

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

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

CSS3如何实现童年的纸飞机

这篇文章主要介绍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

CSS3如何实现童年的纸飞机

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

CSS3如何实现童年的纸飞机

这篇文章主要介绍CSS3如何实现童年的纸飞机 ,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!基本全用css来实现,只有一小部分的js首先看一下飞机的构造灰色区域为可折叠区域白色区域为机身三角形由border画出来的再
2023-06-08

Java如何实现飞机小游戏

这篇文章主要讲解了“Java如何实现飞机小游戏”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Java如何实现飞机小游戏”吧!1,Constant;专门放常量package com.game2
2023-07-01

Python如何实现飞机大战项目

这篇文章主要介绍Python如何实现飞机大战项目,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!具体内容如下plane_main.pyimport pygamefrom 飞机大战.plane_sprites impor
2023-06-20

C语言如何实现飞机大战

本文小编为大家详细介绍“C语言如何实现飞机大战”,内容详细,步骤清晰,细节处理妥当,希望这篇“C语言如何实现飞机大战”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。具体代码如下#include#i
2023-07-02

java如何实现飞机大战小游戏

本篇内容介绍了“java如何实现飞机大战小游戏”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!MyPanel类package P;impor
2023-07-01

如何使用C++实现飞机订票系统

小编给大家分享一下如何使用C++实现飞机订票系统,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!具体内容如下// 飞机订票系统.cpp : 定义控制台应用程序的入口
2023-06-29

C语言如何实现飞机售票系统

本文小编为大家详细介绍“C语言如何实现飞机售票系统”,内容详细,步骤清晰,细节处理妥当,希望这篇“C语言如何实现飞机售票系统”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。一、项目简介通过“航空售票系统”C语言课程
2023-06-30

基于JS如何实现飞机大战游戏

今天小编给大家分享一下基于JS如何实现飞机大战游戏的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。演示技术栈(function
2023-07-02

如何使用C语言实现飞机订票系统

这篇文章主要介绍了如何使用C语言实现飞机订票系统的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇如何使用C语言实现飞机订票系统文章都会有所收获,下面我们一起来看看吧。总体设计和需求分析设计目的1.怎样去合理的设计
2023-07-02

C语言如何实现随机抽取纸牌程序

本篇内容主要讲解“C语言如何实现随机抽取纸牌程序”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C语言如何实现随机抽取纸牌程序”吧!程序设计要求本程序负责发一副标准纸牌,每张标准纸牌都有一种花色(
2023-06-29

如何使用原生JS实现飞机大战小游戏

小编给大家分享一下如何使用原生JS实现飞机大战小游戏,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!本文实例为大家分享了JS实现飞机大战小游戏的具体代码,供大家参考,具体内容如下 </div></div><div class="articleBottom"><span class="date" style="float: right;">2023-06-15</span></div><div class="clearboth"></div></div><div class="articleList clearfix"><div class="intro"><a title="如何利用C++实现一个简单的飞机订票系统?" href="/article/95f8a2d5d1.html"><h4>如何利用C++实现一个简单的飞机订票系统?</h4></a><div class="des">如何利用C++实现一个简单的飞机订票系统?随着空中交通的发展和人们对舒适旅行的需求增加,飞机订票系统变得越来越重要。在这篇文章中,我们将学习如何利用C++编程语言来实现一个简单的飞机订票系统。这个系统将允许用户查询航班信息、选择座位、预订和</div></div><div class="imgBox"><img class="lazy" data-type="0" data-src="https://static.528045.com/imgs/20.jpg?imageMogr2/format/webp/blur/1x0/quality/35" alt="如何利用C++实现一个简单的飞机订票系统?" /></div><div class="articleBottom"><span class="date" style="float: right;">2023-11-02</span></div><div class="clearboth"></div></div><div class="articleList clearfix"><div class="intro"><a title="css3如何实现元素的平移" href="/article/8ebdf0dc4c.html"><h4>css3如何实现元素的平移</h4></a><div class="des"></div></div><div class="articleBottom"><span class="date" style="float: right;">2024-04-02</span></div><div class="clearboth"></div></div><div class="articleList clearfix"><div class="intro"><a title="C#如何实现简单的飞行棋游戏" href="/article/21bd4a49c6.html"><h4>C#如何实现简单的飞行棋游戏</h4></a><div class="des">这篇文章主要为大家展示了“C#如何实现简单的飞行棋游戏”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“C#如何实现简单的飞行棋游戏”这篇文章吧。下面展示 完整代码:namespace 飞行棋{ </div></div><div class="articleBottom"><span class="date" style="float: right;">2023-06-20</span></div><div class="clearboth"></div></div><div class="articleList clearfix"><div class="intro"><a title="C#如何实现简单的飞行棋小游戏" href="/article/71f8f11819.html"><h4>C#如何实现简单的飞行棋小游戏</h4></a><div class="des">这篇文章主要介绍了C#如何实现简单的飞行棋小游戏,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。具体内容如下1.玩家姓名的输入2.对屏幕进行清屏3.初始化地图4.玩家A和玩家B</div></div><div class="articleBottom"><span class="date" style="float: right;">2023-06-21</span></div><div class="clearboth"></div></div><div class="articleList clearfix"><div class="intro"><a title="如何使用html5和css3实现的小机器人走路动画" href="/article/bf982cf3b2.html"><h4>如何使用html5和css3实现的小机器人走路动画</h4></a><div class="des"></div></div><div class="articleBottom"><span class="date" style="float: right;">2024-04-02</span></div><div class="clearboth"></div></div><div class="articleList clearfix"><div class="intro"><a title="css3如何实现一个旋转的动画" href="/article/e5d9b598b0.html"><h4>css3如何实现一个旋转的动画</h4></a><div class="des"></div></div><div class="articleBottom"><span class="date" style="float: right;">2024-04-02</span></div><div class="clearboth"></div></div><div class="articleList clearfix"><div class="intro"><a title="CSS3如何实现绚丽的动画效果" href="/article/21e716c282.html"><h4>CSS3如何实现绚丽的动画效果</h4></a><div class="des"></div></div><div class="articleBottom"><span class="date" style="float: right;">2024-04-02</span></div><div class="clearboth"></div></div></div></div><div class="hotFlag"><h4>热门标签</h4><div class="flagBox"><a title="Linux" href="/tag/Linux/">Linux(148)</a><a title="PHP" href="/tag/PHP/">PHP(127)</a><a title="Java" href="/tag/Java/">Java(102)</a><a title="正则表达式" href="/tag/正则表达式/">正则表达式(101)</a><a title="JavaScript" href="/tag/JavaScript/">JavaScript(69)</a><a title="最佳实践" href="/tag/最佳实践/">最佳实践(67)</a><a title="jQuery" href="/tag/jQuery/">jQuery(44)</a><a title="MySQL" href="/tag/MySQL/">MySQL(39)</a><a title="Docker" href="/tag/Docker/">Docker(37)</a><a title="C语言" href="/tag/C语言/">C语言(36)</a><a title="性能优化" href="/tag/性能优化/">性能优化(34)</a><a title="Python" href="/tag/Python/">Python(34)</a><a title="XML" href="/tag/XML/">XML(28)</a><a title="string" href="/tag/string/">string(27)</a><a title="第三方库" href="/tag/第三方库/">第三方库(23)</a><a title="回调函数" href="/tag/回调函数/">回调函数(23)</a><a title="ZIP" href="/tag/ZIP/">ZIP(22)</a><a title="数组" href="/tag/数组/">数组(22)</a><a title="可扩展性" href="/tag/可扩展性/">可扩展性(22)</a><a title="字符串比较" href="/tag/字符串比较/">字符串比较(21)</a><a title="find" href="/tag/find/">find(20)</a><a title="RPM" href="/tag/RPM/">RPM(20)</a><a title="Go" href="/tag/Go/">Go(20)</a><a title="grep" href="/tag/grep/">grep(19)</a><a title="ASP.NETCore" href="/tag/ASP.NETCore/">ASP.NETCore(19)</a><a title="XML解析器" href="/tag/XML解析器/">XML解析器(19)</a><a title="事件" href="/tag/事件/">事件(19)</a><a title="事件处理程序" href="/tag/事件处理程序/">事件处理程序(19)</a><a title="StringBuilder" href="/tag/StringBuilder/">StringBuilder(18)</a><a title="Nginx" href="/tag/Nginx/">Nginx(18)</a></div></div></div><div class="main_right fr"><div class="artHotSearch"><h4 class="title"><div class="fl"><span class="icon bg_content bg_icon_rs"></span><span class="name">编程热搜</span></div><a href="" class="fr bg_content bg_txt_rsb"></a><div class="clearboth"></div></h4><ul><li class="rslist clearfix"><div class="rslist_left fl"><h5><span class="fl name"><a title="Python 学习之路 - Python" href="https://www.528045.com/article/52df4d95aa.html">Python 学习之路 - Python</a></span></h5><div class="clearboth"></div><div class="des">一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-</div></div><img class="lazy" data-type="0" data-src="/file/imgs/upload/202301/31/qglhspth11k.jpg" alt="Python 学习之路 - Python" /><div class="clearboth"></div></li><li class="rslist clearfix"><div class="rslist_left fl"><h5><span class="fl name"><a title="chatgpt的中文全称是什么" href="https://www.528045.com/article/6d32547808.html">chatgpt的中文全称是什么</a></span></h5><div class="clearboth"></div><div class="des">chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列</div></div><img class="lazy" data-type="0" data-src="https://static.528045.com/imgs/32.jpg?imageMogr2/format/webp/blur/1x0/quality/35" alt="chatgpt的中文全称是什么" /><div class="clearboth"></div></li><li class="rslist clearfix"><div class="rslist_left fl"><h5><span class="fl name"><a title="C/C++中extern函数使用详解" href="https://www.528045.com/article/9733fb00d0.html">C/C++中extern函数使用详解</a></span></h5><div class="clearboth"></div><div class="des"></div></div><img class="lazy" data-type="0" data-src="/file/upload/202211/13/d3kqhimmpgl.jpg" alt="C/C++中extern函数使用详解" /><div class="clearboth"></div></li><li class="rslist clearfix"><div class="rslist_left fl"><h5><span class="fl name"><a title="C/C++可变参数的使用" href="https://www.528045.com/article/773997944a.html">C/C++可变参数的使用</a></span></h5><div class="clearboth"></div><div class="des">可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃</div></div><img class="lazy" data-type="0" data-src="https://static.528045.com/imgs/55.jpg?imageMogr2/format/webp/blur/1x0/quality/35" alt="C/C++可变参数的使用" /><div class="clearboth"></div></li><li class="rslist clearfix"><div class="rslist_left fl"><h5><span class="fl name"><a title="css样式文件该放在哪里" href="https://www.528045.com/article/617e4312cb.html">css样式文件该放在哪里</a></span></h5><div class="clearboth"></div><div class="des"></div></div><img class="lazy" data-type="0" data-src="https://static.528045.com/imgs/27.jpg?imageMogr2/format/webp/blur/1x0/quality/35" alt="css样式文件该放在哪里" /><div class="clearboth"></div></li><li class="rslist clearfix"><div class="rslist_left fl"><h5><span class="fl name"><a title="php中数组下标必须是连续的吗" href="https://www.528045.com/article/21ee165f7c.html">php中数组下标必须是连续的吗</a></span></h5><div class="clearboth"></div><div class="des"></div></div><img class="lazy" data-type="0" data-src="/upload/jz5euwde0tq.jpg" alt="php中数组下标必须是连续的吗" /><div class="clearboth"></div></li><li class="rslist clearfix"><div class="rslist_left fl"><h5><span class="fl name"><a title="Python 3 教程" href="https://www.528045.com/article/01a1d65257.html">Python 3 教程</a></span></h5><div class="clearboth"></div><div class="des">Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python</div></div><img class="lazy" data-type="0" data-src="/upload/202205/01/jneowzxxjtt.jpg" alt="Python 3 教程" /><div class="clearboth"></div></li><li class="rslist clearfix"><div class="rslist_left fl"><h5><span class="fl name"><a title="Python pip包管理" href="https://www.528045.com/article/ab7f357e04.html">Python pip包管理</a></span></h5><div class="clearboth"></div><div class="des">一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    </div></div><img class="lazy" data-type="0" data-src="/file/imgs/upload/202301/31/qn4pmgvm0lq.jpg" alt="Python pip包管理" /><div class="clearboth"></div></li><li class="rslist clearfix"><div class="rslist_left fl"><h5><span class="fl name"><a title="ubuntu如何重新编译内核" href="https://www.528045.com/article/a65a3a171f.html">ubuntu如何重新编译内核</a></span></h5><div class="clearboth"></div><div class="des"></div></div><img class="lazy" data-type="0" data-src="/file/uploads/202210/26/1sph0pw5wqc.jpg" alt="ubuntu如何重新编译内核" /><div class="clearboth"></div></li><li class="rslist clearfix"><div class="rslist_left fl"><h5><span class="fl name"><a title="改善Java代码之慎用java动态编译" href="https://www.528045.com/article/d085d3bcbe.html">改善Java代码之慎用java动态编译</a></span></h5><div class="clearboth"></div><div class="des"></div></div><img class="lazy" data-type="0" data-src="https://static.528045.com/imgs/29.jpg?imageMogr2/format/webp/blur/1x0/quality/35" alt="改善Java代码之慎用java动态编译" /><div class="clearboth"></div></li></ul><div class="seeMore"><a href="https://www.528045.com/article/program-c4-1.html">查看更多</a></div></div><div class="artSubmit"><h4 class="title"><div class="fl"><span class="icon bg_content bg_icon_yktg"></span><span class="name">编程资源站</span></div><div class="clearboth"></div></h4><ul class="submitNav clearfix"><li class="active first">资料下载</li><li>历年试题</li></ul><div class="submitBox active"><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2021年下半年软考高级信息系统项目管理师高频考点" href="https://www.528045.com/down/89bb6.html">2021年下半年软考高级信息系统项目管理师高频考点</a><span class="hot"><a href="https://www.528045.com/down/ziliao-c69-1.html">精选资料</a></span></h5></div><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2021下半年软考高级信息系统技术知识点记忆口诀" href="https://www.528045.com/down/7d690.html">2021下半年软考高级信息系统技术知识点记忆口诀</a><span class="hot"><a href="https://www.528045.com/down/ziliao-c69-1.html">精选资料</a></span></h5></div><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2021下半年软考《信息系统项目管理师》考试真题及答案" href="https://www.528045.com/down/4277a.html">2021下半年软考《信息系统项目管理师》考试真题及答案</a><span class="hot"><a href="https://www.528045.com/down/ziliao-c69-1.html">精选资料</a></span></h5></div><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2021下半年软考高级考试备考攻略" href="https://www.528045.com/down/9248a.html">2021下半年软考高级考试备考攻略</a><span class="hot"><a href="https://www.528045.com/down/ziliao-c69-1.html">精选资料</a></span></h5></div><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2021年软考高级《信息系统项目管理师》巩固练习题汇总" href="https://www.528045.com/down/fcca0.html">2021年软考高级《信息系统项目管理师》巩固练习题汇总</a><span class="hot"><a href="https://www.528045.com/down/ziliao-c69-1.html">精选资料</a></span></h5></div><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2021下半年软考高级信息系统项目管理师30个易考知识点汇总" href="https://www.528045.com/down/7636b.html">2021下半年软考高级信息系统项目管理师30个易考知识点汇总</a><span class="hot"><a href="https://www.528045.com/down/ziliao-c69-1.html">精选资料</a></span></h5></div><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2021下半年软考高级知识点这样记,还担心记不住吗" href="https://www.528045.com/down/76382.html">2021下半年软考高级知识点这样记,还担心记不住吗</a><span class="hot"><a href="https://www.528045.com/down/ziliao-c69-1.html">精选资料</a></span></h5></div><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2021年下半年软考高级考试重点汇总" href="https://www.528045.com/down/15f44.html">2021年下半年软考高级考试重点汇总</a><span class="hot"><a href="https://www.528045.com/down/ziliao-c69-1.html">精选资料</a></span></h5></div><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2021下半年软考高级信息系统项目管理师计算公式汇总" href="https://www.528045.com/down/2d560.html">2021下半年软考高级信息系统项目管理师计算公式汇总</a><span class="hot"><a href="https://www.528045.com/down/ziliao-c69-1.html">精选资料</a></span></h5></div><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2021年下半年软考高级《信息系统项目管理师》模拟试题" href="https://www.528045.com/down/c0085.html">2021年下半年软考高级《信息系统项目管理师》模拟试题</a><span class="hot"><a href="https://www.528045.com/down/ziliao-c69-1.html">精选资料</a></span></h5></div><div class="seeMore"><a href="/down/">查看更多</a></div></div><div class="submitBox"><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="信息系统项目管理师选择题每日一练(2024)" href="https://www.528045.com/article/6d5f303202.html">信息系统项目管理师选择题每日一练(2024)</a><span class="hot"><a href="https://www.528045.com/article/lnst-c57-1.html">历年试题</a></span></h5></div><div class="submitItem"><span class="turn"></span><h5 class="title"><a title="2023年下半年信息系统项目管理师综合知识真题演练" href="https://www.528045.com/article/f2da969d4f.html">2023年下半年信息系统项目管理师综合知识真题演练</a><span class="hot"><a href="https://www.528045.com/article/lnst-c57-1.html">历年试题</a></span></h5></div><div class="seeMore"><a href="https://www.528045.com/article/lnst-c57-1.html">查看更多</a></div></div></div><div class="meumfie"><h4 class="title"><div class="fl"><span class="icon bg_content bg_icon_ykzl"></span><span class="name">目录</span></div><div class="clearboth"></div></h4><div class="toc"></div></div></div><div class="clearboth"></div></div><script type="text/javascript" src="/skin/static/js/toc.js"></script><div class="popUp popDelay"><div class="maskBg"></div><div class="popCon"><span class="btn btn_close"></span><div class="tip"> 本网页已闲置超过3分钟,按键盘任意键或点击空白处,即可回到网页 </div><div class="delayMain"><div class="delaymain_left"><a href="https://www.528045.com"><img src="https://static.528045.com/skin/content_left.png?imageMogr2/format/webp/blur/1x0/quality/35"></a></div><div class="delaymain_right"><div class="news_title"><span class="fl">最新资讯</span ><a href="/" class="fr">更多</a><div class="clearboth"></div></div><ul></ul></div><div class="clearboth"></div></div><div class="bigshow"><a href="https://www.528045.com"><img src="https://static.528045.com/skin/content_bottom.png?imageMogr2/format/webp/blur/1x0/quality/35"></a></div></div></div><div class="footer"><div class="friendLink"><span class="friendTitle">友情链接</span><a href="https://www.lsjlt.com">编程网</a></div><script type="text/javascript" src="/skin/static/js/footermain.js"></script></div><div class="popCommon"><span class="mask"></span><div class="popCon"></div></div><div class="ajaxrightbtn"><div class="funBtnbox"><div class="rb_fk rb_ty br_bom"><div class="wx_mo1 _mo1"><i class="dtmuban-iconfont icon-fankui2"></i><p>反馈</p></div><a href="javascript:void(0);" onclick="Dsb('urs-form-modalfk');"><div class="_mo2 rb_gradient br_bom"><p>我要<br>反馈</p></div></a></div></div><div class="fbs fbs-gotp back2top" style="display: none;"><div class="rb_top rb_ty br_all"><div class="top_mo1 _mo1 "><i class="dtmuban-iconfont icon-zhiding"></i></div><a href="javascript:void(0);" title="返回顶部"><div class="_mo2 rb_gradient br_all"><p>返回<br>顶部</p></div></a></div></div></div><div id="urs-form-modalfk-bg" class="urs-form-modal-bg" style="display: none;"></div><div id="urs-form-modalfk" class="urs-form-modal" style="display: none;"><div class="urs-form-component plan-get-form-mini js-apply-form clearfix"><div class="urs-component-head"><div class="icon-close" onclick="Dhb('urs-form-modalfk');"><img id="close-btn" src="https://static.528045.com/skin/ic_delete_normal_24px.png"></div><p class="form-title">留言反馈</p><p></p><p class="form-line"></p></div><div class="urs-component-tab"><h5>感谢您的提交,我们服务专员将在<span>30分钟内</span>给您回复</h5><div class="get-plan-form-item"><i class="u-item-icon dtmuban-iconfont icon-fanganguihua"></i><input class="u-input js-apply-phone" type="text" id="titleb" name="titleb" value="我要反馈留言,看到请回复" placeholder="留言标题"><span id="dtitlea"></span></div><div class="get-plan-form-item"><select name="typeidb" id="typeidb" class="u-select"><option value="">请选择类型</option><option value="0">问题反馈</option><option value="1">意见建议</option><option value="2">倒卖举报</option><option value="3">不良信息</option><option value="4">其他</option></select></div><div class="get-plan-form-item"><i class="u-item-icon dtmuban-iconfont icon-yonghu"></i><input class="u-input js-apply-name" type="text" id="truenameb" name="truenameb" placeholder="您的姓名" value=""><span id="dtruenameb"></span></div><div class="get-plan-form-item"><i class="u-item-icon dtmuban-iconfont icon-liuyan"></i><input class="u-input js-apply-phone" type="text" id="emailb" name="emailb" placeholder="您的邮箱" value=""><span id="demailb"></span></div><div class="get-plan-form-item"><i class="u-item-icon dtmuban-iconfont icon-shouji"></i><input class="u-input js-apply-phone" type="text" id="telephoneb" name="telephoneb" placeholder="您的手机" value=""><span id="dtelephoneb"></span></div><div class="get-plan-form-item"><i class="u-item-icon dtmuban-iconfont icon-liuyan2"></i><textarea class="u-textarea js-apply-content" id="contentb" name="contentb" placeholder="留言说明,文字为2-100字" value=""></textarea><span id="dcontentb"></span></div><button type="submit" name="submit" class="btn btn-red" onclick="checkaguestbook();">立即提交</button></div></div></div><style> .drop_more li{ list-style: none;} </style><script type="text/javascript" src="/file/script/config.js"></script><script type="text/javascript" src="/file/script/common.js"></script><script type="text/javascript" src="/skin/static/js/commonpop.js"></script><script type="text/javascript" src="/skin/static/js/header.js"></script><script type="text/javascript" src="/skin/static/js/footer.js"></script><script type="text/javascript" src="/skin/static/js/listconcommon.js"></script><script src="/skin/static/layui/layui.js" type="text/javascript"></script><script src="/skin/static/js/custom-script.js" type="text/javascript"></script><script src="/skin/static/js/indexsms.js?v=20240108.1443"></script><script type="text/javascript"> $(function(){ var destoon_userid = 0,destoon_username = '',destoon_member = destoon_guest = ''; destoon_guest = '<div class="login-li"><a href="javascript:void(0);" lay-on="showLoginPopup" class="a_on_dl" id="dn-login">请登录</a></div><div class="login-li"><a href="javascript:void(0);" lay-on="showLoginPopup" class="a_to">免费注册</a></div>'; destoon_member += destoon_guest; $('#m52_member').html(destoon_member); }); </script></body></html><script type="text/javascript" src="/skin/static/js/contentie.js"></script>