您现在的位置是:首页 > 技术教程 正文

全网疯传的前端量子纠缠效果,源码来了!

admin 阅读: 2024-03-30
后台-插件-广告管理-内容页头部广告(手机)

这两天,很多群里都在疯传一个视频,视频演示了纯前端实现的“量子纠缠”效果,不少前端er表示:“前端白学了”。

原视频如下:

全网疯传的前端量子纠缠效果,源码来了!

体验地址:3d example using three.js and multiple windows

视频作者昨晚开源一个简化版的实现源码(截止发文,该项目在 Github 上已获得超过 1k Star),本文就来看看他是怎么实现的!

简化版

根据作者的描述,该项目是使用three.jslocalStorage实现的在同一源上设置跨窗口的 3D 场景。

把源码克隆到本地,用 Live Server 启动一下,简化版的效果是这样的:

在线体验:https://bgstaal.github.io/multipleWindow3dScene/

虽然没有原视频那么炫酷,但基本原理应该差不多。

源码包含多个文件,最主要的文件如下:

  • index.html

  • main.js:主文件

  • WindowManager.js:窗口管理

源码

index.html文件中引入了three.js的压缩包,以及main.js:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>3d example using three.js and multiple windows</title>
  5. <script type="text/javascript" src="./three.r124.min.js"></script>
  6. <style type="text/css">
  7. *
  8. {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <script type="module" src="./main.js"></script>
  16. </body>
  17. </html>

这没啥可说的,下面就来看看 main.js 中都写了点啥。代码如下:

  1. import WindowManager from './WindowManager.js'
  2. const t = THREE;
  3. let camera, scene, renderer, world;
  4. let near, far;
  5. let pixR = window.devicePixelRatio ? window.devicePixelRatio : 1;
  6. let cubes = [];
  7. let sceneOffsetTarget = {x: 0, y: 0};
  8. let sceneOffset = {x: 0, y: 0};
  9. let today = new Date();
  10. today.setHours(0);
  11. today.setMinutes(0);
  12. today.setSeconds(0);
  13. today.setMilliseconds(0);
  14. today = today.getTime();
  15. let internalTime = getTime();
  16. let windowManager;
  17. let initialized = false;
  18. // // 获取从一天开始以来的秒数(以便所有窗口使用相同的时间)
  19. function getTime () {
  20. return (new Date().getTime() - today) / 1000.0;
  21. }
  22. if (new URLSearchParams(window.location.search).get("clear")) {
  23. localStorage.clear();
  24. }
  25. else {
  26. // 在某些浏览器中避免在实际点击URL之前预加载页面内容
  27. document.addEventListener("visibilitychange", () => {
  28. if (document.visibilityState != 'hidden' && !initialized) {
  29. init();
  30. }
  31. });
  32. // 确保在窗口完全加载后,只有在页面可见时才执行初始化逻辑
  33. window.onload = () => {
  34. if (document.visibilityState != 'hidden') {
  35. init();
  36. }
  37. };
  38. // 初始化操作
  39. function init () {
  40. initialized = true;
  41. // 短时间内window.offsetX属性返回的值可能不准确,需要添加一个短暂的延迟,等待一段时间后再执行相关操作。
  42. setTimeout(() => {
  43. setupScene();
  44. setupWindowManager();
  45. resize();
  46. updateWindowShape(false);
  47. render();
  48. window.addEventListener('resize', resize);
  49. }, 500)
  50. }
  51. // 设置场景相关的配置
  52. function setupScene () {
  53. camera = new t.OrthographicCamera(0, 0, window.innerWidth, window.innerHeight, -10000, 10000);
  54. camera.position.z = 2.5;
  55. near = camera.position.z - .5;
  56. far = camera.position.z + 0.5;
  57. scene = new t.Scene();
  58. scene.background = new t.Color(0.0);
  59. scene.add( camera );
  60. renderer = new t.WebGLRenderer({antialias: true, depthBuffer: true});
  61. renderer.setPixelRatio(pixR);
  62. world = new t.Object3D();
  63. scene.add(world);
  64. renderer.domElement.setAttribute("id", "scene");
  65. document.body.appendChild( renderer.domElement );
  66. }
  67. // 设置窗口管理器的相关配置
  68. function setupWindowManager () {
  69. windowManager = new WindowManager();
  70. windowManager.setWinShapeChangeCallback(updateWindowShape);
  71. windowManager.setWinChangeCallback(windowsUpdated);
  72. let metaData = {foo: "bar"};
  73. // 初始化窗口管理器(windowmanager)并将当前窗口添加到窗口池中。
  74. windowManager.init(metaData);
  75. windowsUpdated();
  76. }
  77. function windowsUpdated () {
  78. updateNumberOfCubes();
  79. }
  80. function updateNumberOfCubes () {
  81. let wins = windowManager.getWindows();
  82. cubes.forEach((c) => {
  83. world.remove(c);
  84. })
  85. cubes = [];
  86. for (let i = 0; i < wins.length; i++) {
  87. let win = wins[i];
  88. let c = new t.Color();
  89. c.setHSL(i * .1, 1.0, .5);
  90. let s = 100 + i * 50;
  91. let cube = new t.Mesh(new t.BoxGeometry(s, s, s), new t.MeshBasicMaterial({color: c , wireframe: true}));
  92. cube.position.x = win.shape.x + (win.shape.w * .5);
  93. cube.position.y = win.shape.y + (win.shape.h * .5);
  94. world.add(cube);
  95. cubes.push(cube);
  96. }
  97. }
  98. function updateWindowShape (easing = true) {
  99. sceneOffsetTarget = {x: -window.screenX, y: -window.screenY};
  100. if (!easing) sceneOffset = sceneOffsetTarget;
  101. }
  102. function render () {
  103. let t = getTime();
  104. windowManager.update();
  105. // 根据当前位置和新位置之间的偏移量以及一个平滑系数来计算出窗口的新位置
  106. let falloff = .05;
  107. sceneOffset.x = sceneOffset.x + ((sceneOffsetTarget.x - sceneOffset.x) * falloff);
  108. sceneOffset.y = sceneOffset.y + ((sceneOffsetTarget.y - sceneOffset.y) * falloff);
  109. world.position.x = sceneOffset.x;
  110. world.position.y = sceneOffset.y;
  111. let wins = windowManager.getWindows();
  112. // 遍历立方体对象,并根据当前窗口位置的变化更新它们的位置。
  113. for (let i = 0; i < cubes.length; i++) {
  114. let cube = cubes[i];
  115. let win = wins[i];
  116. let _t = t;// + i * .2;
  117. let posTarget = {x: win.shape.x + (win.shape.w * .5), y: win.shape.y + (win.shape.h * .5)}
  118. cube.position.x = cube.position.x + (posTarget.x - cube.position.x) * falloff;
  119. cube.position.y = cube.position.y + (posTarget.y - cube.position.y) * falloff;
  120. cube.rotation.x = _t * .5;
  121. cube.rotation.y = _t * .3;
  122. };
  123. renderer.render(scene, camera);
  124. requestAnimationFrame(render);
  125. }
  126. // 调整渲染器大小以适合窗口大小
  127. function resize () {
  128. let width = window.innerWidth;
  129. let height = window.innerHeight
  130. camera = new t.OrthographicCamera(0, width, 0, height, -10000, 10000);
  131. camera.updateProjectionMatrix();
  132. renderer.setSize( width, height );
  133. }
  134. }

这段代码主要实现以下几点:

  • 初始化场景和渲染器:在setupScene函数中,设置了一个正交相机、场景和渲染器,并将渲染器的 DOM 元素添加到页面中。

  • 初始化窗口管理器:在setupWindowManager函数中,创建了一个窗口管理器实例,并初始化了窗口并添加到窗口池中。

  • 更新立方体数量和位置:通过updateNumberOfCubes函数,根据窗口管理器中窗口的数量和位置信息,动态创建立方体并根据窗口位置更新其在场景中的位置。

  • 渲染循环:在render函数中,使用requestAnimationFrame不断循环渲染场景,并根据窗口管理器中窗口的位置更新立方体的位置和旋转。

  • 响应窗口大小变化:通过resize函数,在窗口大小变化时重新设置相机的宽高比和渲染器的大小,以适应新的窗口尺寸。

接下来看看最核心的实现:WindowManager,代码如下:

  1. class WindowManager {
  2. #windows;
  3. #count;
  4. #id;
  5. #winData;
  6. #winShapeChangeCallback;
  7. #winChangeCallback;
  8. constructor () {
  9. let that = this;
  10. // 监听 localStorage 是否被其他窗口更改
  11. addEventListener("storage", (event) => {
  12. if (event.key == "windows") {
  13. let newWindows = JSON.parse(event.newValue);
  14. let winChange = that.#didWindowsChange(that.#windows, newWindows);
  15. that.#windows = newWindows;
  16. if (winChange) {
  17. if (that.#winChangeCallback) that.#winChangeCallback();
  18. }
  19. }
  20. });
  21. // 监听当前窗口是否即将关闭
  22. window.addEventListener('beforeunload', function (e) {
  23. let index = that.getWindowIndexFromId(that.#id);
  24. // 从窗口列表中移除当前窗口并更新 localStorage
  25. that.#windows.splice(index, 1);
  26. that.updateWindowsLocalStorage();
  27. });
  28. }
  29. // 检查窗口列表是否有变化
  30. #didWindowsChange (pWins, nWins) {
  31. if (pWins.length != nWins.length) {
  32. return true;
  33. }
  34. else {
  35. let c = false;
  36. for (let i = 0; i < pWins.length; i++) {
  37. if (pWins[i].id != nWins[i].id) c = true;
  38. }
  39. return c;
  40. }
  41. }
  42. // 初始化当前窗口(添加元数据以将自定义数据存储在每个窗口实例中)
  43. init (metaData) {
  44. this.#windows = JSON.parse(localStorage.getItem("windows")) || [];
  45. this.#count= localStorage.getItem("count") || 0;
  46. this.#count++;
  47. this.#id = this.#count;
  48. let shape = this.getWinShape();
  49. this.#winData = {id: this.#id, shape: shape, metaData: metaData};
  50. this.#windows.push(this.#winData);
  51. localStorage.setItem("count", this.#count);
  52. this.updateWindowsLocalStorage();
  53. }
  54. getWinShape () {
  55. let shape = {x: window.screenLeft, y: window.screenTop, w: window.innerWidth, h: window.innerHeight};
  56. return shape;
  57. }
  58. getWindowIndexFromId (id) {
  59. let index = -1;
  60. for (let i = 0; i < this.#windows.length; i++) {
  61. if (this.#windows[i].id == id) index = i;
  62. }
  63. return index;
  64. }
  65. updateWindowsLocalStorage () {
  66. localStorage.setItem("windows", JSON.stringify(this.#windows));
  67. }
  68. update () {
  69. let winShape = this.getWinShape();
  70. if (winShape.x != this.#winData.shape.x ||
  71. winShape.y != this.#winData.shape.y ||
  72. winShape.w != this.#winData.shape.w ||
  73. winShape.h != this.#winData.shape.h) {
  74. this.#winData.shape = winShape;
  75. let index = this.getWindowIndexFromId(this.#id);
  76. this.#windows[index].shape = winShape;
  77. if (this.#winShapeChangeCallback) this.#winShapeChangeCallback();
  78. this.updateWindowsLocalStorage();
  79. }
  80. }
  81. setWinShapeChangeCallback (callback) {
  82. this.#winShapeChangeCallback = callback;
  83. }
  84. setWinChangeCallback (callback) {
  85. this.#winChangeCallback = callback;
  86. }
  87. getWindows () {
  88. return this.#windows;
  89. }
  90. getThisWindowData () {
  91. return this.#winData;
  92. }
  93. getThisWindowID () {
  94. return this.#id;
  95. }
  96. }
  97. export default WindowManager;

这段代码定义了一个WindowManager类,用于管理窗口的创建、更新和删除等操作,并将其作为模块导出。

该类包含以下私有属性:

  • #windows: 存储所有窗口的数组。

  • #count: 记录窗口的数量。

  • #id: 当前窗口的唯一标识符。

  • #winData: 当前窗口的元数据,包括窗口的形状、自定义数据等。

  • #winShapeChangeCallback: 当窗口形状发生变化时调用的回调函数。

  • #winChangeCallback: 当窗口列表发生变化时调用的回调函数。

该类包含以下公共方法:

  • init(metaData): 初始化当前窗口,并添加到窗口列表中。

  • getWindows(): 获取所有窗口的数组。

  • getThisWindowData(): 获取当前窗口的元数据。

  • getThisWindowID(): 获取当前窗口的标识符。

  • setWinShapeChangeCallback(callback): 设置窗口形状变化时的回调函数。

  • setWinChangeCallback(callback): 设置窗口列表变化时的回调函数。

  • update(): 更新当前窗口的形状信息,并将更新后的窗口列表存储到本地存储中。

可以看到,作者使用window.screenLeft、window.screenTop、window.innerWidth和window.innerHeight这些属性来计算立方体的位置和大小信息,通过localstorage来在不同窗口之间共享不同的位置信息。

当新增一个窗口时,就将其保存到localstorage中,每个窗口使用唯一的id进行标记,并储存立方体的位置和大小信息。不同浏览器窗口都可以获得所有的窗口信息,以确保实时更新。

图片

当窗口的位置,即screenTop、screenLeft发生变化时,就更新立方体。

这里就不再详细解释了,可以查看完整源码:https://github.com/bgstaal/multipleWindow3dScene

标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索
排行榜