-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
2,206 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!-- | ||
* @Description: weekly-06 | ||
* @Author: zoeblow | ||
* @Email: [email protected] | ||
* @Date: 2024-01-01 17:20:35 | ||
* @LastEditors: wangfuyuan | ||
* @LastEditTime: 2024-02-02 10:21:28 | ||
* @FilePath: \nuofe-weekly1\2024\weekly-06.md | ||
--> | ||
|
||
# 2024-06 期 | ||
|
||
Add:2024-02-09 | ||
|
||
Update:2024-02-09 | ||
|
||
![202406](../images/2024/202406.jpg) | ||
|
||
## 前端消息 | ||
|
||
- [Three.js 物理引擎Oimo.js](https://mp.weixin.qq.com/s/barNCkiFwP4HxuxqVI2PzA) | ||
|
||
> Oimo.js和three.js是两个广泛使用的JavaScript库,用于在Web上创建3D场景,特别是游戏。 | ||
- [整天用 Calendar 日历组件,不如自己手写一个吧](https://mp.weixin.qq.com/s/yxLStpRq0O0KQ1cFVxoL2w) | ||
|
||
> 日历组件想必大家都用过,在各个组件库里都有。比如 antd 的 Calendar 组件。 | ||
- [Vue3批量异步更新是如何实现的?](https://mp.weixin.qq.com/s/d8Nc_14zG5VYdflEMbTg1A) | ||
|
||
> 实现vue中一个非常重要的功能,批量更新或者叫异步更新 | ||
## 技术解析 | ||
|
||
- [如何实现 带圆角的虚线边框?](https://mp.weixin.qq.com/s/uPbrB9OULbYM5axEO5Fs4Q) | ||
|
||
> 我们来看这么一个非常常见的场景,我们需要一个带圆角的虚线边框。 | ||
- [CSS 文字效果还能这样玩~](https://mp.weixin.qq.com/s/FNIVhtv1JY56Jc5UnWpIhg) | ||
|
||
> 文字算是我们天天会打交道的一大类了,有了文字,则必不可少一些文字装饰。 | ||
- [如何判断一个对象存在"循环引用"?](https://mp.weixin.qq.com/s/MjW6q2e53tcbV7ITHw1XLw) | ||
|
||
> 如果两个对象相互传递引用或者对象的属性引用其本身都有可能会造成循环引用。 | ||
## 其他 | ||
|
||
- [为什么React一年不发新版了?](https://mp.weixin.qq.com/s/8TTTt0nbBuSQpkaAetxNQA) | ||
|
||
> 遥想前几年,各种快速迭代版本,而现在,React已经一年没更新稳定release了。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!-- | ||
* @Description: weekly-05 | ||
* @Author: zoeblow | ||
* @Email: [email protected] | ||
* @Date: 2024-01-01 17:20:35 | ||
* @LastEditors: wangfuyuan | ||
* @LastEditTime: 2024-02-02 10:10:19 | ||
* @FilePath: \nuofe-weekly1\2024\weekly-05.md | ||
--> | ||
|
||
# 2024-05 期 | ||
|
||
Add:2024-02-02 | ||
|
||
Update:2024-02-02 | ||
|
||
![202405](../images/2024/202405.jpg) | ||
|
||
## 前端消息 | ||
|
||
- [老司机手把手教学:threejs 实现一个简易的泊车](https://juejin.cn/post/7328753414724435968) | ||
|
||
> 咱们尝试做一个简单的自动泊车,进一步探究下 threejs 中还有哪些东西。 | ||
- [一种更好的前端组件结构:组件树](https://mp.weixin.qq.com/s/4xKvPmD7IgWCFsMu0tFwkA) | ||
|
||
> 组件树,一种减少认知负荷的结构。 | ||
- [神奇的 3D 卡片反光闪烁动效](https://mp.weixin.qq.com/s/APStdiwcitBfAJtV451PEQ) | ||
|
||
> 介绍了一种神奇的 3D 卡片反光闪烁动效,通过鼠标移动实现卡片的 3D 旋转效果。 | ||
## 技术解析 | ||
|
||
- [JavaScript错误处理完整指南](https://mp.weixin.qq.com/s/fMfo7Iw7xphfU-yXYEhDdQ) | ||
|
||
> 本文将带你了解 JavaScript 中常见的错误类型,处理同步和异步 JavaScript/Node.js 代码中错误和异常的方式,以及错误处理最佳实践! | ||
- [9999999999999999.0 - 9999999999999998.0](https://mp.weixin.qq.com/s/u5xuqe6XzwZqEIpL0lnLTg) | ||
|
||
> 求 9999999999999999.0 – 9999999999999998.0,哪种编程语言的浮点计算能给出正确答案? | ||
- [这个浏览器,想必只有开发者才会用吧?](https://mp.weixin.qq.com/s/F8fpiEv2y3Y1SVIdw-m3YQ) | ||
|
||
> 在数字世界的深处,隐藏着一种不为普通人所知的浏览器形态——无头浏览器。 | ||
## 其他 | ||
|
||
- [十年过去了,UI 框架还停滞在原地……](https://mp.weixin.qq.com/s/S1kd_U3aA4U5tcM80F7RZw) | ||
|
||
> 这篇文章是一位前端开发者揭示了主流 UI 框架的局限性,认为它们都在误导开发者…… |
Oops, something went wrong.