先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7
深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年最新Web前端全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上前端开发知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
如果你需要这些资料,可以添加V获取:vip1024c (备注前端)
正文
order: 2;
}
.nav .buy {
order: 3;
}
#choose:checked ~ .togglebtn .line:nth-child(1) {
transform: rotate(44deg);
}
#choose:checked ~ .togglebtn .line:nth-child(2) {
transform: rotate(-43deg);
}
#choose:checked ~ .navpage {
display: flex;
/*
vw:viewport width 视窗的宽度 ==100vw =100%视窗的高度
vh:viewport height:100vh == 100% viewport height
*/
width: 100vw;
height: 100vh;
color: #fff;
position: fixed;
left: 0;
top: 0;
background-color: #000;
flex-direction: column;
padding-top: 44px;
}
.searchInput {
margin: 0px 28px;
display: flex;
justify-content: flex-start;
align-items: center;
height: 44px;
border-radius: 4px;
color: #ccc;
background-color: rgba(45, 45, 45, 0.98);
}
.searchInput .icon {
width: 32px;
height: 36px;
background-image: url(“…/imag/search.png”);
background-repeat: no-repeat;
background-position: center;
/* 设置图片背景时,一定要考虑 图片的url 位置 尺寸 重复*/
}
.searchInput input {
flex: 1;
margin: 0 10px;
height: 100%;
background: transparent;
border: none;
outline: none;
color: #fff;
}
hr {
border-color: #333;
margin-top: 15px;
}
.navList {
margin: 0 28px;
display: flex;
flex-direction: column;
justify-content: center;
}
.navList a {
width: 100%;
height: 44px;
color: #fff;
text-align: left;
line-height: 44px;
border-bottom: 1px solid #333;
}
.navList a:last-child {
border-bottom: none;
}
}
练习完结版
<meta
name=“viewport”
content=“width=device-width, initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no”
/>
Mac
ipad
iphone
watch
music
TV
SUPPORT
MAC
IPAD
IPHOME
WATCH
TV
MUSIC
SUPORT
让节日,快乐每一个人。
让节日,
快乐每一个人。
选购好礼新款
更大屏幕腕上见
进一步了解
购买
更大屏幕腕上见
进一步了解
购买
iphonestyle
- {
margin: 0;
padding: 0;
}
.nav {
width: 100%;
height: 44px;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
font-family: “宋体”;
font-size: 12px;
}
.nav a {
color:rgba(255,255,255,0.82);
/* 设置a标签下划线为none */
text-decoration: none;
width: 102px;
text-align: center;
}
.nav a:hover{
color: #fff;
}
.nav > .logo {
height: 44px;
width: 44px;
background-image: url(“…/imag/logo.png”);
background-repeat: no-repeat;
background-position: center;
}
.nav > .search {
width: 44px;
height: 44px;
background-image: url(“…/imag/search.png”);
background-repeat: no-repeat;
background-position: center;
}
.nav > .buy {
width: 44px;
height: 44px;
background-image: url(“…/imag/buy.png”);
background-repeat: no-repeat;
background-position: center;
}
label {
width: 44px;
height: 44px;
}
.togglebtn {
width: 44px;
display: none;
position: relative;
flex-direction: column;
justify-content: center;
align-items: center;
}
.togglebtn > .line {
width: 18px;
height: 1px;
background-color: #fff;
display: none;
transition: all 0.5s;
transform-origin: left center;
}
.togglebtn .line:nth-child(1) {
position: absolute;
top: 15px;
}
.togglebtn .line:nth-child(2) {
position: absolute;
top: 27px;
}
/*
设定屏幕小于768像素时的像素
*/
.navpage {
z-index: 10;
width: 100vw;
overflow: hidden;
display: flex;
height: 0vh;
transition: all 0.8s;
position: fixed;
left: 0;
top: 0;
background-color: #000;
}
.navpage .navmain {
width: 100%;
}
@media only screen and (max-width: 700px) {
.togglebtn {
display: flex;
position: relative;
z-index: 100;
}
.nav > .logo {
position: relative;
z-index: 100;
}
.togglebtn > .line {
display: block;
}
.nav > .text {
display: none;
}
.nav {
justify-content: space-between;
}
.nav > a {
width: 50px;
}
.nav .togglebtn {
order: 1;
}
.nav .logo {
order: 2;
}
.nav .buy {
order: 3;
}
#choose:checked ~ .togglebtn .line:nth-child(1) {
transform: rotate(44deg);
}
#choose:checked ~ .togglebtn .line:nth-child(2) {
transform: rotate(-43deg);
}
#choose:checked ~ .navpage {
display: flex;
/*
vw:viewport width 视窗的宽度 ==100vw =100%视窗的高度
vh:viewport height:100vh == 100% viewport height
*/
width: 100vw;
height: 100vh;
color: #fff;
position: fixed;
left: 0;
z-index: 10;
top: 0;
background-color: #000;
flex-direction: column;
padding-top: 44px;
}
.searchInput {
margin: 0px 28px;
display: flex;
justify-content: flex-start;
align-items: center;
height: 44px;
border-radius: 4px;
color: #ccc;
background-color: rgba(45, 45, 45, 0.98);
}
.searchInput .icon {
width: 32px;
height: 36px;
background-image: url(“…/imag/search.png”);
background-repeat: no-repeat;
background-position: center;
/* 设置图片背景时,一定要考虑 图片的url 位置 尺寸 重复*/
}
.searchInput input {
flex: 1;
margin: 0 10px;
height: 100%;
background: transparent;
border: none;
outline: none;
color: #fff;
}
hr {
border-color: #333;
margin-top: 15px;
}
.navList {
margin: 0 28px;
display: flex;
flex-direction: column;
justify-content: center;
}
.navList a {
width: 100%;
height: 44px;
color: #fff;
text-align: left;
line-height: 44px;
border-bottom: 1px solid #333;
}
.navList a:last-child {
border-bottom: none;
}
}
banner
@import url(“./hbanner.css”);
.banner {
display: flex;
width: 100%;
height: 580px;
background-color: #edeffe;
flex-direction: column;
justify-content: center;
align-items: center;
}
.copywarp {
flex: 2;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
text-align: center;
}
.copywarp .redapple {
margin: 20px 0;
width: 54px;
height: 67px;
background-image: url(“…/imag/applered.png”);
background-position: center;
background-repeat: no-repeat;
}
.copywarp h2 {
width: 500px;
position: inherit;
font-size: 43px;
line-height: 1.08349;
color: #1d1d1f;
padding-left: 20px;
margin-bottom: 20px;
}
.copywarp .rightlogo a {
text-decoration: none;
color: #06c;
}
.copywarp .rightlogo a:hover {
text-decoration: underline;
}
.rightlogo {
position: relative;
}
.rightlogo::before {
position: absolute;
left: 65px;
top: 3px;
content: " ";
display: block;
width: 15px;
height: 15px;
background-image: url(“…/imag/xiangyou1.png”);
background-position: center center;
background-size: 100% auto;
background-repeat: no-repeat;
}
.picture {
width: 70%;
height: 90%;
height: 281px;
flex: 3;
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 40px 0;
}
.picture img {
flex: 1;
}
@media only screen and (max-width: 1050px) {
.banner {
height: 569px;
}
}
@media only screen and (max-width: 700px) {
.banner {
margin: 0;
padding: 0;
height: 500px;
}
.copywarp {
padding: 0;
}
.copywarp > .redapple {
background-size: 80% auto;
width: 45px;
height: 55px;
}
.picture {
margin: 0;
padding: 0;
flex: 1.5;
display: flex;
}
.picture img:nth-child(2),
.picture img:nth-child(3) {
display: none;
}
.picture img:nth-child(1) {
flex: 1;
padding: 0 100px;
padding-bottom: 20px;
}
.copywarp > .headline {
display: none;
}
.copywarp > .text {
width: 250px;
text-align: center;
height: 32px;
font-size: 30px;
margin-bottom: 10px;
display: block;
}
.hbanner {
flex-direction: column !important;
justify-content: center;
align-items: center;
height: 1184px;
}
.hbanner .banner:nth-child(1),
.hbanner .banner:nth-child(2) {
flex: 1;
height: 592px;
width: 100%;
}
}
hbanner
.hbanner {
display: flex;
flex-direction: row;
}
.hbanner .banner {
display: flex;
justify-content: flex-start;
flex: 1;
text-align: center;
width: 50%;
}
.hbanner .banner span:nth-child(1) {
padding-top: 30px;
font-size: 12px;
line-height: 1.33337;
height: 16px;
color: #bf4800;
}
.hbanner .banner span.tltlelogo2 {
background-image: url(“…/imag/ipad.png”);
width: 607px;
height: 26px;
margin-top: 30px;
background-size: auto 26px;
background-position: center;
background-repeat: no-repeat;
}
.hbanner > .banner span:nth-child(2) {
background-image: url(“…/imag/hbannertitle.png”);
width: 329px;
height: 45px;
background-position: center;
background-repeat: no-repeat;
}
.hbanner > .banner h5 {
margin-top: 10px;
width: 329px;
height: 23px;
font-size: 19px;
line-height: 1.21053;
}
.hbanner > .banner > .ad {
display: flex;
flex-direction: row;
font-size: 15px;
font-family: “微软雅黑”;
line-height: 15px;
text-align: center;
margin-top: 10px;
}
.hbanner > .banner > .ad > a {
width: 90px;
color: #06c;
height: 15px;
学习笔记
主要内容包括html,css,html5,css3,JavaScript,正则表达式,函数,BOM,DOM,jQuery,AJAX,vue等等
HTML/CSS
**HTML:**HTML基本结构,标签属性,事件属性,文本标签,多媒体标签,列表 / 表格 / 表单标签,其他语义化标签,网页结构,模块划分
**CSS:**CSS代码语法,CSS 放置位置,CSS的继承,选择器的种类/优先级,背景样式,字体样式,文本属性,基本样式,样式重置,盒模型样式,浮动float,定位position,浏览器默认样式
HTML5 /CSS3
**HTML5:**HTML5 的优势,HTML5 废弃元素,HTML5 新增元素,HTML5 表单相关元素和属性
**CSS3:**CSS3 新增选择器,CSS3 新增属性,新增变形动画属性,3D变形属性,CSS3 的过渡属性,CSS3 的动画属性,CSS3 新增多列属性,CSS3新增单位,弹性盒模型
JavaScript
**JavaScript:**JavaScript基础,JavaScript数据类型,算术运算,强制转换,赋值运算,关系运算,逻辑运算,三元运算,分支循环,switch,while,do-while,for,break,continue,数组,数组方法,二维数组,字符串
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
需要这份系统化的资料的朋友,可以添加V获取:vip1024c (备注前端)
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
nt-family: “微软雅黑”;
line-height: 15px;
text-align: center;
margin-top: 10px;
}
.hbanner > .banner > .ad > a {
width: 90px;
color: #06c;
height: 15px;
学习笔记
主要内容包括html,css,html5,css3,JavaScript,正则表达式,函数,BOM,DOM,jQuery,AJAX,vue等等
HTML/CSS
**HTML:**HTML基本结构,标签属性,事件属性,文本标签,多媒体标签,列表 / 表格 / 表单标签,其他语义化标签,网页结构,模块划分
**CSS:**CSS代码语法,CSS 放置位置,CSS的继承,选择器的种类/优先级,背景样式,字体样式,文本属性,基本样式,样式重置,盒模型样式,浮动float,定位position,浏览器默认样式
[外链图片转存中…(img-X6mPCdF4-1713302468014)]
HTML5 /CSS3
**HTML5:**HTML5 的优势,HTML5 废弃元素,HTML5 新增元素,HTML5 表单相关元素和属性
**CSS3:**CSS3 新增选择器,CSS3 新增属性,新增变形动画属性,3D变形属性,CSS3 的过渡属性,CSS3 的动画属性,CSS3 新增多列属性,CSS3新增单位,弹性盒模型
[外链图片转存中…(img-FHwF7cbd-1713302468014)]
JavaScript
**JavaScript:**JavaScript基础,JavaScript数据类型,算术运算,强制转换,赋值运算,关系运算,逻辑运算,三元运算,分支循环,switch,while,do-while,for,break,continue,数组,数组方法,二维数组,字符串
[外链图片转存中…(img-S5juur2R-1713302468015)]
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
需要这份系统化的资料的朋友,可以添加V获取:vip1024c (备注前端)
[外链图片转存中…(img-R3UDGgCg-1713302468015)]
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!