2024年2024将至,前端程序员们应该一起放个烟花庆祝一下,走起,无偿分享

文末

如果30岁以前,可以还不知道自己想去做什么的话,那30岁之后,真的觉得时间非常的宝贵,不能再浪费时间在一些碎片化的事情上,比如说看综艺,电视剧。一个人的黄金时间也就二,三十年,不能过得浑浑噩噩。所以花了基本上休息的时间,去不断的完善自己的知识体系,希望可以成为一个领域内的TOP。

同样是干到30岁,普通人写业务代码划水,榜样们深度学习拓宽视野晋升管理。

这也是为什么大家都说30岁是程序员的门槛,很多人迈不过去,其实各行各业都是这样都会有个坎,公司永远都缺的高级人才,只用这样才能在大风大浪过后,依然闪耀不被公司淘汰不被社会淘汰。

269页《前端大厂面试宝典》

包含了腾讯、字节跳动、小米、阿里、滴滴、美团、58、拼多多、360、新浪、搜狐等一线互联网公司面试被问到的题目,涵盖了初中级前端技术点。

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

前端面试题汇总

JavaScript

javascript

==========

主要控制文字显示的位置,文字及烟花出现的频率。

var canvas = document.getElementById(“cas”);

var ocas = document.createElement(“canvas”);

var octx = ocas.getContext(“2d”);

var ctx = canvas.getContext(“2d”);

ocas.width = canvas.width = window.innerWidth;

ocas.height = canvas.height = window.innerHeight;

var bigbooms = [];

window.onload = function(){

initAnimate()

}

function initAnimate(){

drawBg();

lastTime = new Date();

animate();

}

var lastTime;

function animate(){

ctx.save();

ctx.fillStyle = “rgba(0,5,24,0.1)”;

ctx.fillRect(0,0,canvas.width,canvas.height);

ctx.restore();

var newTime = new Date();

if(newTime-lastTime>500+(window.innerHeight-767)/2){

var random = Math.random()*100>2?true:false;

var x = getRandom(canvas.width/5 , canvas.width*4/5);

var y = getRandom(50 , 200);

if(random){

var bigboom = new Boom(getRandom(canvas.width/3,canvas.width*2/3) ,2,“#FFF” , {x:x , y:y});

bigbooms.push(bigboom)

}

else {

var bigboom = new Boom(getRandom(canvas.width/3,canvas.width*2/3) ,2,“#FFF” , {x:canvas.width/2 , y:200} , document.querySelectorAll(“.shape”)[parseInt(getRandom(0, document.querySelectorAll(“.shape”).length))]);

bigbooms.push(bigboom)

}

lastTime = newTime;

console.log(bigbooms)

}

stars.foreach(function(){

this.paint();

})

drawMoon();

bigbooms.foreach(function(index){

var that = this;

if(!this.dead){

this._move();

this._drawLight();

}

else{

this.booms.foreach(function(index){

if(!this.dead) {

this.moveTo(index);

}

else if(index === that.booms.length-1){

bigbooms[bigbooms.indexOf(that)] = null;

}

})

}

});

raf(animate);

}

function drawMoon(){

var moon = document.getElementById(“moon”);

var centerX = canvas.width-200 , centerY = 100 , width = 80;

if(moon.complete){

ctx.drawImage(moon , centerX , centerY , width , width )

}

else {

moon.onload = function(){

ctx.drawImage(moon ,centerX , centerY , width , width)

}

}

var index = 0;

for(var i=0;i<10;i++){

ctx.save();

ctx.beginPath();

ctx.arc(centerX+width/2 , centerY+width/2 , width/2+index , 0 , 2*Math.PI);

ctx.fillStyle=“rgba(240,219,120,0.005)”;

index+=2;

ctx.fill();

ctx.restore();

}

}

Array.prototype.foreach = function(callback){

for(var i=0;i<this.length;i++){

if(this[i]!==null) callback.apply(this[i] , [i])

}

}

var raf = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || function (callback) { window.setTimeout(callback, 1000 / 60); };

canvas.onclick = function(){

var x = event.clientX;

var y = event.clientY;

var bigboom = new Boom(getRandom(canvas.width/3,canvas.width*2/3) ,2,“#FFF” , {x:x , y:y});

bigbooms.push(bigboom)

}

// canvas.addEventLisener(“touchstart” , function(event){

// var touch = event.targetTouches[0];

// var x = event.pageX;

// var y = event.pageY;

// var bigboom = new Boom(getRandom(canvas.width/3,canvas.width*2/3) ,2,“#FFF” , {x:x , y:y});

// bigbooms.push(bigboom)

// })

var Boom = function(x,r,c,boomArea,shape){

this.booms = [];

this.x = x;

this.y = (canvas.height+r);

this.r = r;

this.c = c;

this.shape = shape || false;

this.boomArea = boomArea;

this.theta = 0;

this.dead = false;

this.ba = parseInt(getRandom(80 , 100));

}

Boom.prototype = {

_paint:function(){

ctx.save();

ctx.beginPath();

ctx.arc(this.x,this.y,this.r,0,2*Math.PI);

ctx.fillStyle = this.c;

ctx.fill();

ctx.restore();

},

_move:function(){

var dx = this.boomArea.x - this.x , dy = this.boomArea.y - this.y;

this.x = this.x+dx*0.01;

this.y = this.y+dy*0.01;

if(Math.abs(dx)<=this.ba && Math.abs(dy)<=this.ba){

if(this.shape){

this._shapBoom();

}

else this._boom();

this.dead = true;

}

else {

this._paint();

}

},

_drawLight:function(){

ctx.save();

ctx.fillStyle = “rgba(255,228,150,0.3)”;

ctx.beginPath();

ctx.arc(this.x , this.y , this.r+3Math.random()+1 , 0 , 2Math.PI);

ctx.fill();

ctx.restore();

},

_boom:function(){

var fragNum = getRandom(30 , 200);

var style = getRandom(0,10)>=5? 1 : 2;

var color;

if(style===1){

color = {

a:parseInt(getRandom(128,255)),

b:parseInt(getRandom(128,255)),

c:parseInt(getRandom(128,255))

}

}

var fanwei = parseInt(getRandom(300, 400));

for(var i=0;i<fragNum;i++){

if(style===2){

color = {

a:parseInt(getRandom(128,255)),

b:parseInt(getRandom(128,255)),

c:parseInt(getRandom(128,255))

}

}

var a = getRandom(-Math.PI, Math.PI);

var x = getRandom(0, fanwei) * Math.cos(a) + this.x;

var y = getRandom(0, fanwei) * Math.sin(a) + this.y;

var radius = getRandom(0 , 2)

var frag = new Frag(this.x , this.y , radius , color , x , y );

this.booms.push(frag);

}

},

_shapBoom:function(){

var that = this;

putValue(ocas , octx , this.shape , 5, function(dots){

var dx = canvas.width/2-that.x;

var dy = canvas.height/2-that.y;

for(var i=0;i<dots.length;i++){

color = {a:dots[i].a,b:dots[i].b,c:dots[i].c}

var x = dots[i].x;

var y = dots[i].y;

var radius = 1;

var frag = new Frag(that.x , that.y , radius , color , x-dx , y-dy);

that.booms.push(frag);

}

})

}

}

function putValue(canvas , context , ele , dr , callback){

context.clearRect(0,0,canvas.width,canvas.height);

var img = new Image();

if(ele.innerHTML.indexOf(“img”)>=0){

img.src = ele.getElementsByTagName(“img”)[0].src;

imgload(img , function(){

context.drawImage(img , canvas.width/2 - img.width/2 , canvas.height/2 - img.width/2);

dots = getimgData(canvas , context , dr);

callback(dots);

})

}

else {

var text = ele.innerHTML;

context.save();

var fontSize =200;

最后

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

ele.innerHTML.indexOf(“img”)>=0){

img.src = ele.getElementsByTagName(“img”)[0].src;

imgload(img , function(){

context.drawImage(img , canvas.width/2 - img.width/2 , canvas.height/2 - img.width/2);

dots = getimgData(canvas , context , dr);

callback(dots);

})

}

else {

var text = ele.innerHTML;

context.save();

var fontSize =200;

最后

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

[外链图片转存中…(img-A9S22bo1-1714812923260)]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值