js基础
1)对js的理解?
2)请说出以下代码输出的值?
3)把以下代码,改写成依次输出0-9
4)如何区分数组对象,普通对象,函数对象
5)面向对象、面向过程
6)面向对象的三大基本特性
7)XML和JSON的区别?
8)Web Worker 和webSocket?
9)Javascript垃圾回收方法?
10)new操作符具体干了什么呢?
11)js延迟加载的方式有哪些?
12)WEB应用从服务器主动推送Data到客户端有那些方式?
margin: 0;
padding: 0;
}
弹性盒布局设置:
魔方显然放在网页中心才显得好看,如何实现?传统布局——基于盒子模型,依赖 display 属性、position属性、float属性。它对于那些特殊布局非常不方便,比如,垂直居中就不容易实现。
并且,传统布局代码冗长,出错率高,要时刻注意清除浮动或者在进行绝对定位时给父元素添加相对定位。否则就容易造成页面布局混乱。但是,Flex布局就可以避免这种情况:Flex是Flexible Box的缩写,意为”弹性布局”,用来为盒状模型提供最大的灵活性。
详解:[https://blog.csdn.net/a1015895218/article/details/115355465]( )
![](https://img-blog.csdnimg.cn/6c523791ef954ce4ac7028ec94fcef8b.webp)
2.2 对body进行设置弹性盒以及自己喜欢的背景颜色
body{
//vw,vh为视口单位,1vw等于视口宽度的1%。
width: 100vw;
height: 100vh;
display: flex; //弹性盒设置
justify-content:center; //主轴居中对齐
align-items:center; //交叉轴居中对齐
/* 添加一个视距 */
perspective: 1000px; //让旋转效果变得更真实
background: #000;
}
2.3 对container容器元素进行相关设置,实现3D风格
.container{
width: 150px;
height: 150px;
/* border: 1px solid; */
transform-style: preserve-3d;
position: relative;
transition:5s;
/* 之所以设置相对定位,是因为子绝父相 */
animation: rotate 5s infinite linear;
}
2.4 container悬停的视觉效果设置
.container:hover{
/* 当鼠标移入时,改变视角 */
transform: rotateY(180deg) rotateX(180deg);
}
2.5 container下子元素div进行相关位置背景设置,子元素div相当于父元素container是绝对定位。
.container div{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: #fff;
transition: 1s;
background-color: #fff;
}
2.6 现在书写魔方各个面的背景图以及旋转角度等设置
.container div:nth-child(1),
.container div:nth-child(7){
background: url('../images/img1.jpg') no-repeat center/cover white;
transform: translateZ(75px);
}
.container:hover div:nth-child(1){
transform: translateZ(200px);
}
.container div:nth-child(2),
.container div:nth-child(8){
background: url('../images/img2.jpg') no-repeat center/cover white;
transform: rotateX(-180deg) translateZ(75px);
}
.container:hover div:nth-child(2){
transform: rotateX(-180deg) translateZ(200px);
}
.container div:nth-child(3),
.container div:nth-child(9){
background: url('../images/img3.jpg') no-repeat center/cover white;
transform: rotateX(90deg) translateZ(75px);
}
.container:hover div:nth-child(3){
transform: rotateX(90deg) translateZ(200px);
}
.container div:nth-child(4),
.container div:nth-child(10){
background: url('../images/img4.jpg') no-repeat center/cover white;
transform: rotateX(-90deg) translateZ(75px);
}
.container:hover div:nth-child(4){
transform: rotateX(-90deg) translateZ(200px);
}
.container div:nth-child(5),
.container div:nth-child(11){
background: url('../images/img5.jpg') no-repeat center/cover white;
transform: rotateY(90deg) translateZ(75px);
}
.container:hover div:nth-child(5){
transform: rotateY(90deg) translateZ(200px);
}
.container div:nth-child(6),
.container div:nth-child(12){
background: url('../images/img6.jpg') no-repeat center/cover white;
transform: rotateY(-90deg) translateZ(75px);
}
.container:hover div:nth-child(6){
transform: rotateY(-90deg) translateZ(200px);
}
跳槽是每个人的职业生涯中都要经历的过程,不论你是搜索到的这篇文章还是无意中浏览到的这篇文章,希望你没有白白浪费停留在这里的时间,能给你接下来或者以后的笔试面试带来一些帮助。
也许是互联网未来10年中最好的一年。WINTER IS COMING。但是如果你不真正的自己去尝试尝试,你永远不知道市面上的行情如何。这次找工作下来,我自身感觉市场并没有那么可怕,也拿到了几个大厂的offer。在此进行一个总结,给自己,也希望能帮助到需要的同学。
### 面试准备
**[开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】](https://bbs.csdn.net/forums/4304bb5a486d4c3ab8389e65ecb71ac0)**
面试准备根据每个人掌握的知识不同,准备的时间也不一样。现在对于前端岗位,以前也许不是很重视算法这块,但是现在很多公司也都会考。建议大家平时有空的时候多刷刷leetcode。算法的准备时间比较长,是一个长期的过程。需要在掌握了大部分前端基础知识的情况下,再有针对性的去复习算法。面试的时候算法能做出来肯定加分,但做不出来也不会一票否决,面试官也会给你提供一些思路。
**[开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】](https://bbs.csdn.net/forums/4304bb5a486d4c3ab8389e65ecb71ac0)**
面试准备根据每个人掌握的知识不同,准备的时间也不一样。现在对于前端岗位,以前也许不是很重视算法这块,但是现在很多公司也都会考。建议大家平时有空的时候多刷刷leetcode。算法的准备时间比较长,是一个长期的过程。需要在掌握了大部分前端基础知识的情况下,再有针对性的去复习算法。面试的时候算法能做出来肯定加分,但做不出来也不会一票否决,面试官也会给你提供一些思路。