跨境派

跨境派

跨境派,专注跨境行业新闻资讯、跨境电商知识分享!

当前位置:首页 > 综合服务 > 物流仓储 > 3d旋转相册,前端系统工程师面试

3d旋转相册,前端系统工程师面试

时间:2024-04-08 09:10:33 来源:网络cs 作者:言安琪 栏目:物流仓储 阅读:42

标签: 工程师  系统  相册  旋转 

scc代码段

@charset “utf-8”;

*{

margin:0;

padding:0;

}

body{

/background: url(…/img/preview.png) ;/

max-width: 100%;

min-width: 100%;

height: 100%;

background-size: cover;

background-repeat: no-repeat;

background-attachment: fixed;

background-size:100% 100%;

position: absolute;

margin-left: auto;

margin-right: auto;

}

li{

list-style: none;

}

.box{

width:200px;

height:200px;

background-size: cover;

background-repeat: no-repeat;

background-attachment: fixed;

background-size:100% 100%;

position: absolute;

margin-left: 42%;

margin-top: 22%;

transform-style:preserve-3d;

transform:rotateX(13deg);

animation:move 5s linear infinite;

}

.minbox{

width:100px;

height:100px;

position: absolute;

left:50px;

top:30px;

transform-style:preserve-3d;

}

.minbox li{

width:100px;

height:100px;

position: absolute;

left:0;

top:0;

}

.minbox li:nth-child(1){

background: url(…/img/01.jpg) no-repeat 0 0;

transform:translateZ(50px);

}

.minbox li:nth-child(2){

background: url(…/img/02.jpg) no-repeat 0 0;

transform:rotateX(180deg) translateZ(50px);

}

.minbox li:nth-child(3){

background: url(…/img/03.png) no-repeat 0 0;

transform:rotateX(-90deg) translateZ(50px);

}

.minbox li:nth-child(4){

background: url(…/img/04.jpg) no-repeat 0 0;

transform:rotateX(90deg) translateZ(50px);

}

.minbox li:nth-child(5){

background: url(…/img/05.jpg) no-repeat 0 0;

transform:rotateY(-90deg) translateZ(50px);

}

.minbox li:nth-child(6){

background: url(…/img/06.jpg) no-repeat 0 0;

transform:rotateY(90deg) translateZ(50px);

}

.maxbox li:nth-child(1){

background: url(…/img/1.jpg) no-repeat 0 0;

transform:translateZ(50px);

}

.maxbox li:nth-child(2){

background: url(…/img/2.jpg) no-repeat 0 0;

transform:translateZ(50px);

}

.maxbox li:nth-child(3){

background: url(…/img/3.jpg) no-repeat 0 0;

transform:rotateX(-90deg) translateZ(50px);

}

.maxbox li:nth-child(4){

background: url(…/img/4.jpg) no-repeat 0 0;

transform:rotateX(90deg) translateZ(50px);

}

.maxbox li:nth-child(5){

background: url(…/img/5.jpg) no-repeat 0 0;

transform:rotateY(-90deg) translateZ(50px);

}

.maxbox li:nth-child(6){

background: url(…/img/6.jpg) no-repeat 0 0;

transform:rotateY(90deg) translateZ(50px);

}

.maxbox{

width: 800px;

height: 400px;

position: absolute;

left: 0;

top: -20px;

transform-style: preserve-3d;

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数前端工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Web前端开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
img
img
img
img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上前端开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新

如果你觉得这些内容对你有帮助,可以添加V获取:vip1024c (备注前端)
img

Vue 面试题

1.Vue 双向绑定原理
2.描述下 vue 从初始化页面–修改数据–刷新页面 UI 的过程?
3.你是如何理解 Vue 的响应式系统的?
4.虚拟 DOM 实现原理
5.既然 Vue 通过数据劫持可以精准探测数据变化,为什么还需要虚拟 DOM 进行 diff 检测差异?
6.Vue 中 key 值的作用?
7.Vue 的生命周期
8.Vue 组件间通信有哪些方式?
9.watch、methods 和 computed 的区别?
10.vue 中怎么重置 data?
11.组件中写 name 选项有什么作用?
12.vue-router 有哪些钩子函数?
13.route 和 router 的区别是什么?
14.说一下 Vue 和 React 的认识,做一个简单的对比
15.Vue 的 nextTick 的原理是什么?
16.Vuex 有哪几种属性?
17.vue 首屏加载优化
18.Vue 3.0 有没有过了解?
19.vue-cli 替我们做了哪些工作?

vue 中怎么重置 data?
11.组件中写 name 选项有什么作用?
12.vue-router 有哪些钩子函数?
13.route 和 router 的区别是什么?
14.说一下 Vue 和 React 的认识,做一个简单的对比
15.Vue 的 nextTick 的原理是什么?
16.Vuex 有哪几种属性?
17.vue 首屏加载优化
18.Vue 3.0 有没有过了解?
19.vue-cli 替我们做了哪些工作?
[外链图片转存中…(img-H79J0Brh-1711727260378)]

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

本文链接:https://www.kjpai.cn/news/2024-04-08/155350.html,文章来源:网络cs,作者:言安琪,版权归作者所有,如需转载请注明来源和作者,否则将追究法律责任!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。

文章评论