2024年Web前端最全第十三届蓝桥杯Web模拟赛题解(1),字节跳动前端面试流程

最后

今天的文章可谓是积蓄了我这几年来的应聘和面试经历总结出来的经验,干货满满呀!如果你能够一直坚持看到这儿,那么首先我还是十分佩服你的毅力的。不过光是看完而不去付出行动,或者直接进入你的收藏夹里吃灰,那么我写这篇文章就没多大意义了。所以看完之后,还是多多行动起来吧!

可以非常负责地说,如果你能够坚持把我上面列举的内容都一个不拉地看完并且全部消化为自己的知识的话,那么你就至少已经达到了中级开发工程师以上的水平,进入大厂技术这块是基本没有什么问题的了。

开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】

制作网站首页


*{

padding: 0;

margin: 0;

text-decoration: none;

}

body{

background-color: black;

}

.headerbox,.banner,.tabtitle,.list,.footer{

width: 1024px;

margin: auto;

}

/* header */

.headerbox{

height: 78px;

background-color: white;

}

.navbox{

/* height: 78px; */

padding: 23px;

}

.navbox h1{

color: #0099f2;

float: left;

}

.navright{

float: right;

}

.on{

display: inline-block;

width: 120px;

height: 32px;

color: #0099f2;

background-color: #f0f9ff;

line-height: 32px;

text-align: center;

}

.on+a{

display: inline-block;

width: 120px;

height: 32px;

color:black;

line-height: 32px;

text-align: center;

}

/* banner */

.banner{

position: relative;

overflow: hidden;

height: 460px;

background-color: #008bed;

}

.container{

width: 964px;

height: 430px;

position: absolute;

bottom: 0px;

padding: 30px 30px 0px 30px;

}

.container img{

position: absolute;

bottom: -15px;

}

.content {

width: 43%;

padding-top: 100px;

float: right;

}

.content h2{

color:#fdfdfd;

font-size: 40px;

line-height: 40px;

padding-bottom: 10px;

}

.info{

width: 100%;

font-size: 16px;

line-height: 26px;

color: #99d1f8;

}

/* tabtitle */

.tabtitle{

width: 960px;

height: 100px;

padding-left: 32px;

padding-right: 32px;

background-color: rgb(249,249,249);

}

.tabtitle h3{

line-height: 100px;

font-size: 24px;

font-weight: 400;

color: #000;

float: left;

}

.tabtitle h4{

line-height: 100px;

font-weight: 500;

font-size: 24px;

color: #cccccc;

float: right;

}

/* list */

.list{

position: relative;

background-color: rgb(249,249,249);

height: 1718px;

padding-bottom: 30px;

}

.list ul{

list-style: none;

}

.list li{

/* display: inline-block; */

margin-left: 30px;

margin-bottom: 20px;

padding-top: 20px;

float: left;

background-color: white;

}

.list img{

display: block;

margin-top: 20px;

width: 260px;

height: 260px;

margin: auto;

}

.list a{

display: block;

width: 300px;

height: 374px;

}

.list p{

width: 260px;

font-size: 14px;

line-height: 25px;

color: #333333;

margin: auto;

}

.more{

position: absolute;

bottom: 30px;

width: 960px;

height: 62px;

left: 32px;

background-color: #e8eef2;

text-align: center;}

.more a{

display: block;

width: 100%;

line-height: 62px;

font-size: 20px;

color: #59abdf;

}

/* footer */

.footer{

height: 265px;

background-color: #e5e5e5;

}

.footerBox{

width: 960px;

padding: 32px;

}

.footerL{

width: 710px;

height: 210px;

float: left;

}

.footerL p{

font-size: 14px;

line-height: 25px;

margin-bottom: 15px;

color: #000;

}

.footerR{

float: right;

text-align: center;

}

.footerR img{

width: 141px;

height: 152px;

}

响应式 Gulp 中文网


天气预报查询


function getweather() {

//TODO:请补充代码

$.ajax({

type: “get”,

url: “js/weather.json”,

data: {},

dataType: “json”,

success: function (data) {

console.log(data.result)

$(“#Monday img”).attr(‘src’,data.result[0].weather_icon);

$(“#Monday .item-mess div:nth-child(1)”).prepend(data.result[0].weather);

$(“#Monday .item-mess div:nth-child(2)”).prepend(data.result[0].temperature);

$(“#Monday .item-mess div:nth-child(3)”).prepend(data.result[0].winp);

$(“#Monday .item-mess div span:nth-child(1)”).prepend(data.result[0].days);

$(“#Monday .item-mess div span:nth-child(2)”).prepend(data.result[0].week);

$(“#Tuesday img”).attr(‘src’,data.result[1].weather_icon);

$(“#Tuesday .item-mess div:nth-child(1)”).prepend(data.result[1].weather);

$(“#Tuesday .item-mess div:nth-child(2)”).prepend(data.result[1].temperature);

$(“#Tuesday .item-mess div:nth-child(3)”).prepend(data.result[1].winp);

$(“#Tuesday .item-mess div span:nth-child(1)”).prepend(data.result[1].days);

$(“#Tuesday .item-mess div span:nth-child(2)”).prepend(data.result[1].week);

$(“#Wednesday img”).attr(‘src’,data.result[2].weather_icon);

$(“#Wednesday .item-mess div:nth-child(1)”).prepend(data.result[2].weather);

$(“#Wednesday .item-mess div:nth-child(2)”).prepend(data.result[2].temperature);

$(“#Wednesday .item-mess div:nth-child(3)”).prepend(data.result[2].winp);

$(“#Wednesday .item-mess div span:nth-child(1)”).prepend(data.result[2].days);

$(“#Wednesday .item-mess div span:nth-child(2)”).prepend(data.result[2].week);

$(“#Thursday img”).attr(‘src’,data.result[3].weather_icon);

$(“#Thursday .item-mess div:nth-child(1)”).prepend(data.result[3].weather);

$(“#Thursday .item-mess div:nth-child(2)”).prepend(data.result[3].temperature);

$(“#Thursday .item-mess div:nth-child(3)”).prepend(data.result[3].winp);

$(“#Thursday .item-mess div span:nth-child(1)”).prepend(data.result[3].days);

$(“#Thursday .item-mess div span:nth-child(2)”).prepend(data.result[3].week);

$(“#Friday img”).attr(‘src’,data.result[4].weather_icon);

$(“#Friday .item-mess div:nth-child(1)”).prepend(data.result[4].weather);

$(“#Friday .item-mess div:nth-child(2)”).prepend(data.result[4].temperature);

$(“#Friday .item-mess div:nth-child(3)”).prepend(data.result[4].winp);

$(“#Friday .item-mess div span:nth-child(1)”).prepend(data.result[4].days);

$(“#Friday .item-mess div span:nth-child(2)”).prepend(data.result[4].week);

$(“#Saturday img”).attr(‘src’,data.result[5].weather_icon);

$(“#Saturday .item-mess div:nth-child(1)”).prepend(data.result[5].weather);

$(“#Saturday .item-mess div:nth-child(2)”).prepend(data.result[5].temperature);

$(“#Saturday .item-mess div:nth-child(3)”).prepend(data.result[5].winp);

$(“#Saturday .item-mess div span:nth-child(1)”).prepend(data.result[5].days);

$(“#Saturday .item-mess div span:nth-child(2)”).prepend(data.result[5].week);

$(“#Sunday img”).attr(‘src’,data.result[6].weather_icon);

$(“#Sunday .item-mess div:nth-child(1)”).prepend(data.result[6].weather);

$(“#Sunday .item-mess div:nth-child(2)”).prepend(data.result[6].temperature);

$(“#Sunday .item-mess div:nth-child(3)”).prepend(data.result[6].winp);

$(“#Sunday .item-mess div span:nth-child(1)”).prepend(data.result[6].days);

$(“#Sunday .item-mess div span:nth-child(2)”).prepend(data.result[6].week);

}

})

}

getweather();

实现卡号绑定功能


function bind(cardno, password) {

//Todo:补充代码.

var flag = false

$.ajax({

url: “./cardnolist.json”, //json文件位置

type: “GET”, //请求方式为get

dataType: “json”, //返回数据格式为json

success: function (data) { //请求成功完成后要执行的方法

$.each(data.cardnolist, function (i, item) {

总结

面试前要精心做好准备,简历上写的知识点和原理都需要准备好,项目上多想想难点和亮点,这是面试时能和别人不一样的地方。

还有就是表现出自己的谦虚好学,以及对于未来持续进阶的规划,企业招人更偏爱稳定的人。

万事开头难,但是程序员这一条路坚持几年后发展空间还是非常大的,一切重在坚持。

开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】

前端面试题汇总

JavaScript

前端资料汇总

  • 26
    点赞
  • 17
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值