当前位置: 首页 > news >正文

哪个网站教做公众号wordpress 的分类目录

哪个网站教做公众号,wordpress 的分类目录,vr 做的网站,上海网站建设 销售前言 为了满足工作需求#xff0c;我已着手学习 Three.js#xff0c;并决定详细记录这一学习过程。在此旅程中#xff0c;如果出现理解偏差或有其他更佳的学习方法#xff0c;请大家不吝赐教#xff0c;在评论区给予指正或分享您的宝贵建议#xff0c;我将不胜感激。 项…前言 为了满足工作需求我已着手学习 Three.js并决定详细记录这一学习过程。在此旅程中如果出现理解偏差或有其他更佳的学习方法请大家不吝赐教在评论区给予指正或分享您的宝贵建议我将不胜感激。 项目基础 请参考hello正方体 2。 1. 抗锯齿 除非直线完全水平或垂直否则使用方形像素绘制直线是很困难的。我们将使用一种称为抗锯齿(AA) 的技术来解决这个问题。 1.1 多重采样抗锯齿 (MSAA) 抗锯齿是使用内置的 WebGL 方法执行的即 多重采样抗锯齿 (MSAA)。 1.2 启用抗锯齿 renderer.js: 添加如下 import { WebGLRenderer } from three;/*** description - 创建渲染器* returns {WebGLRenderer} - 渲染器实例*/ export const createRenderder () {// 创建WebGLRenderer类的一个实例// 打开抗锯齿antialiasconst renderer new WebGLRenderer({ antialias: true });// 启用物理上正确的光照renderer.physicallyCorrectLights true;return renderer; };注意 一旦创建了渲染器就无法更改此设置。 2. 浏览器窗口大小变化 目的是为了用户调整预览窗口的大小场景适应新的大小。 2.1 扩展 Resizer 类 因为初始化时要设置初始大小页面变化时也要重新设置大小所有要把这部分设置代码移入到一个函数里。将使用 ResizeObserver 来监听容器的大小变化。因为我们只调用了.render 一次它在画布中绘制了一个帧。当画布被调整大小时这个框架被拉伸以适应新的大小。所以要创建一个 onResize 钩子每次调整大小事件触发时生成一个新帧。在 World 中使用 onResize 函数。 Resizer.js添加如下 import { PerspectiveCamera, WebGLRenderer } from three; class Resizer {#container; // 容器#camera; // 相机#renderer; // 渲染器onResize () {}; // 页面大小变化钩子函数/*** param {Element} container - 容器* param {PerspectiveCamera} camera - 相机* param {WebGLRenderer} renderer - 渲染器*/constructor(container, camera, renderer) {this.#container container;this.#camera camera;this.#renderer renderer;// 初始化sizethis.#setSize();// 监听容器大小变化const resizeObserver new ResizeObserver(() {this.#setSize();this.onResize();});resizeObserver.observe(container);}#setSize() {this.#camera.aspect this.#container.clientWidth / this.#container.clientHeight;this.#camera.updateProjectionMatrix();this.#renderer.setSize(this.#container.clientWidth,this.#container.clientHeight);this.#renderer.setPixelRatio(window.devicePixelRatio);} } export { Resizer };World.js添加如下 import { createScene } from ./components/scene; import { createCamera } from ./components/camera; import { createCude } from ./components/cube; import { createLights } from ./components/lights; import { createRenderder } from ./systems/renderer; import { Resizer } from ./systems/Resizer; class World {#scene; // 场景#camera; // 相机#renderer; // 渲染/*** param {Element} container - 容器*/constructor(container) {this.#scene createScene();this.#camera createCamera();this.#renderer createRenderder();container.append(this.#renderer.domElement);const cube createCude();const light createLights();this.#scene.add(cube, light);const resizer new Resizer(container, this.#camera, this.#renderer);resizer.onResize () {this.render();};}/*** description - 渲染函数*/render() {this.#renderer.render(this.#scene, this.#camera);} }export { World };3. 动画循环运动 为立方体添加一个简单的旋转动画。 创建一个动画循环 创建 systems/Loop.js 模块并在其中创建一个新 Loop 类 import { PerspectiveCamera, Scene, WebGLRenderer } from three; class Loop {#camera; // 相机#scene; // 场景#renderer; // 渲染/*** param {PerspectiveCamera} camera - 相机* param {Scene} scene - 场景* param {WebGLRenderer} renderer - 渲染*/constructor(camera, scene, renderer) {this.#camera camera;this.#scene scene;this.#renderer renderer;}/*** description - 动画循环开始*/start() {}/*** description - 动画循环结束*/stop() {} }export { Loop };在 World 中将这个新类添加到导入列表中 World.js: 添加如下 import { createScene } from ./components/scene; import { createCamera } from ./components/camera; import { createCude } from ./components/cube; import { createLights } from ./components/lights; import { createRenderder } from ./systems/renderer; import { Resizer } from ./systems/Resizer; import { Loop } from ./systems/Loop; class World {#scene; // 场景#camera; // 相机#renderer; // 渲染#loop; // 动画循环/*** param {Element} container - 容器*/constructor(container) {this.#scene createScene();this.#camera createCamera();this.#renderer createRenderder();this.#loop new Loop(this.#camera, this.#scene, this.#renderer);container.append(this.#renderer.domElement);const cube createCude();const light createLights();this.#scene.add(cube, light);const resizer new Resizer(container, this.#camera, this.#renderer);resizer.onResize () {this.render();};}/*** description - 渲染函数*/render() {this.#renderer.render(this.#scene, this.#camera);}/*** description - 动画循环开始*/start() {this.#loop.start();}/*** description - 动画循环结束*/stop() {this.#loop.stop();} }export { World };启动动画循环 main.js添加如下 import { World } from ../World/World;function main() {// 获取容器const container document.querySelector(#scene-container);// 创建一个world类实例const world new World(container);// 开始动画循环world.start(); }main();使用.setAnimationLoop 创建循环 在内部循环是使用 .requestAnimationFrame。这种内置的浏览器方法可以智能地安排帧与显示器的刷新率同步如果您的硬件跟不上它会平滑地降低帧率。然而.setAnimationLoop 还有一点额外的魔力可以确保循环在虚拟现实和增强现实环境中工作。 Loop.js添加如下 import { PerspectiveCamera, Scene, WebGLRenderer } from three; class Loop {#camera; // 相机#scene; // 场景#renderer; // 渲染/*** param {PerspectiveCamera} camera - 相机* param {Scene} scene - 场景* param {WebGLRenderer} renderer - 渲染*/constructor(camera, scene, renderer) {this.#camera camera;this.#scene scene;this.#renderer renderer;}/*** description - 动画循环开始*/start() {this.#renderer.setAnimationLoop(() {this.#renderer.render(this.#scene, this.#camera);});}/*** description - 动画循环结束*/stop() {this.#renderer.setAnimationLoop(null);} }export { Loop };移除 onResize 钩子 现在循环正在运行每当我们调整窗口大小时都会在循环的下一次迭代中生成一个新帧。这足够快不会注意到任何延迟因此我们不再需要在调整大小时手动重绘场景。从 World 中移除 resizer.onResize 钩子 World.js添加如下 import { createScene } from ./components/scene; import { createCamera } from ./components/camera; import { createCude } from ./components/cube; import { createLights } from ./components/lights; import { createRenderder } from ./systems/renderer; import { Resizer } from ./systems/Resizer; import { Loop } from ./systems/Loop; class World {#scene; // 场景#camera; // 相机#renderer; // 渲染#loop; // 动画循环/*** param {Element} container - 容器*/constructor(container) {this.#scene createScene();this.#camera createCamera();this.#renderer createRenderder();this.#loop new Loop(this.#camera, this.#scene, this.#renderer);container.append(this.#renderer.domElement);const cube createCude();const light createLights();this.#scene.add(cube, light);new Resizer(container, this.#camera, this.#renderer);}/*** description - 渲染函数*/render() {this.#renderer.render(this.#scene, this.#camera);}/*** description - 动画循环开始*/start() {this.#loop.start();}/*** description - 动画循环结束*/stop() {this.#loop.stop();} }export { World };4. 动画系统 每次循环运行时希望通过将它们向前移动一帧来更新所有这些动画。就在我们渲染每一帧之前我们会让立方体旋转一点点 几乎是肉眼无法看到的微小量但随着时间的推移会产生流畅的动画效果。 Loop.tick 方法 为了处理所有这些我们需要一个更新所有动画的函数并且这个函数应该在每一帧开始时运行一次。 Loop.js添加如下 import { PerspectiveCamera, Scene, WebGLRenderer } from three; class Loop {#camera; // 相机#scene; // 场景#renderer; // 渲染/*** param {PerspectiveCamera} camera - 相机* param {Scene} scene - 场景* param {WebGLRenderer} renderer - 渲染*/constructor(camera, scene, renderer) {this.#camera camera;this.#scene scene;this.#renderer renderer;}/*** description - 动画循环开始*/start() {this.#renderer.setAnimationLoop(() {this.tick();this.#renderer.render(this.#scene, this.#camera);});}/*** description - 动画循环结束*/stop() {this.#renderer.setAnimationLoop(null);}/*** description - 更新动画*/tick() {} }export { Loop };cube.tick 方法 为动画对象创建一个.tick 方法更新自身。 cube.js: 添加如下 import { BoxGeometry, Mesh, MeshStandardMaterial, MathUtils } from three; /*** description - 创建立方体* returns {Mesh} - 网格实例*/export const createCude () {// 创建边长为2的几何体就是边长2米const geometry new BoxGeometry(2, 2, 2);// 创建一个高质量、通用、物理精确的材料 设置颜色为紫色const material new MeshStandardMaterial({ color: purple });// 创建一个网格添加几何体和材质const cube new Mesh(geometry, material);// 旋转立方体cube.rotation.set(-0.5, -0.1, 0.8);// 添加更新动画方法tickcube.tick () {cube.rotation.z 0.01;cube.rotation.x 0.01;cube.rotation.y 0.01;};return cube; };注意 像这样在运行时向现有类添加属性称为 猴子补丁。 Loop.#updatables 循环类中的动画对象列表。 Loop.js添加如下 import { PerspectiveCamera, Scene, WebGLRenderer, Object3D } from three; class Loop {#camera; // 相机#scene; // 场景#renderer; // 渲染#updatables []; // 循环里的动画对象列表/*** param {PerspectiveCamera} camera - 相机* param {Scene} scene - 场景* param {WebGLRenderer} renderer - 渲染* param {Object3D[]} updatables - 循环里的动画对象列表*/constructor(camera, scene, renderer, updatables []) {this.#camera camera;this.#scene scene;this.#renderer renderer;this.#updatables updatables;}/*** description - 动画循环开始*/start() {this.#renderer.setAnimationLoop(() {this.tick();this.#renderer.render(this.#scene, this.#camera);});}/*** description - 动画循环结束*/stop() {this.#renderer.setAnimationLoop(null);}/*** description - 更新动画*/tick() {for (const object of this.#updatables) {object.tick();}}/*** description - 添加动画对象* param {...Object3D} object*/addObjectToUpdatables(...object) {this.#updatables.push(...object);}/*** description - 删除动画对象* param {...Object3D} object*/removeObjectFromUpdatables(...object) {this.#updatables this.#updatables.filter((obj) !object.includes(obj));} }export { Loop };添加 cube 到 Loop.#updatables World.js添加如下 import { createScene } from ./components/scene; import { createCamera } from ./components/camera; import { createCude } from ./components/cube; import { createLights } from ./components/lights; import { createRenderder } from ./systems/renderer; import { Resizer } from ./systems/Resizer; import { Loop } from ./systems/Loop; class World {#scene; // 场景#camera; // 相机#renderer; // 渲染#loop; // 动画循环/*** param {Element} container - 容器*/constructor(container) {this.#scene createScene();this.#camera createCamera();this.#renderer createRenderder();this.#loop new Loop(this.#camera, this.#scene, this.#renderer);container.append(this.#renderer.domElement);const cube createCude();this.#loop.addObjectToUpdatables(cube);const light createLights();this.#scene.add(cube, light);new Resizer(container, this.#camera, this.#renderer);}/*** description - 渲染函数*/render() {this.#renderer.render(this.#scene, this.#camera);}/*** description - 动画循环开始*/start() {this.#loop.start();}/*** description - 动画循环结束*/stop() {this.#loop.stop();} }export { World };小结 立方体应该立即开始旋转。 5. 将动画速度与帧速率解耦 我们动画的速度取决于观看它的设备。我们的动画循环不会以固定速率生成帧。这意味着在 60Hz 屏幕上目标帧率为 60FPS在 90Hz 屏幕上目标帧率为 90FPS以此类推。 在每一种情况下动画循环都会以较低的速率生成帧并且这个速率可能会因为许多因素从一个时刻到下一个时刻波动。这称为可变帧速率。 为了防止这种情况我们需要将动画速度与帧速率解耦。我们将这样做当我们告诉一个对象.tick 前进一帧时我们将根据前一帧花费的时间来缩放移动的大小。 使用 Clock 类 用 Clock.getDelta 来衡量前一帧花了多长时间。.getDelta 告诉我们自上次调用.getDelta 以来已经过去了多少时间。 将结果保存在一个名为 delta 的变量中然后我们将其传递给每个动画对象的.tick 方法。 Loop.js添加如下 import {PerspectiveCamera,Scene,WebGLRenderer,Object3D,Clock, } from three; class Loop {#camera; // 相机#scene; // 场景#renderer; // 渲染#updatables []; // 循环里的动画对象列表#clock; // 秒表/*** param {PerspectiveCamera} camera - 相机* param {Scene} scene - 场景* param {WebGLRenderer} renderer - 渲染* param {Object3D[]} updatables - 循环里的动画对象列表*/constructor(camera, scene, renderer, updatables []) {this.#camera camera;this.#scene scene;this.#renderer renderer;this.#updatables updatables;this.#clock new Clock();}/*** description - 动画循环开始*/start() {this.#renderer.setAnimationLoop(() {this.tick();this.#renderer.render(this.#scene, this.#camera);});}/*** description - 动画循环结束*/stop() {this.#renderer.setAnimationLoop(null);}/*** description - 更新动画*/tick() {// .getDelta告诉我们自上次调用.getDelta以来已经过去了多少时间。const delta this.#clock.getDelta();for (const object of this.#updatables) {object.tick(delta);}}/*** description - 添加动画对象* param {...Object3D} object*/addObjectToUpdatables(...object) {this.#updatables.push(...object);}/*** description - 删除动画对象* param {...Object3D} object*/removeObjectFromUpdatables(...object) {this.#updatables this.#updatables.filter((obj) !object.includes(obj));} }export { Loop };cube.js添加如下 import { BoxGeometry, Mesh, MeshStandardMaterial, MathUtils } from three; /*** description - 创建立方体* returns {Mesh} - 网格实例*/export const createCude () {// 创建边长为2的几何体就是边长2米const geometry new BoxGeometry(2, 2, 2);// 创建一个高质量、通用、物理精确的材料 设置颜色为紫色const material new MeshStandardMaterial({ color: purple });// 创建一个网格添加几何体和材质const cube new Mesh(geometry, material);// 旋转立方体cube.rotation.set(-0.5, -0.1, 0.8);// 度数转弧度const radiansPerSecond MathUtils.degToRad(30);// 添加更新动画方法tickcube.tick (delta) {const radian radiansPerSecond * delta;cube.rotation.z radian;cube.rotation.x radian;cube.rotation.y radian;};return cube; };6. 总结 至此已经全部完成。你好正方体 3如果出现理解偏差或有其他更佳的学习方法请大家不吝赐教在评论区给予指正或分享您的宝贵建议我将不胜感激。 主要文献 three.js 官网 《discoverthreejs》
文章转载自:
http://www.morning.krjrb.cn.gov.cn.krjrb.cn
http://www.morning.zckhn.cn.gov.cn.zckhn.cn
http://www.morning.chhhq.cn.gov.cn.chhhq.cn
http://www.morning.fjshyc.com.gov.cn.fjshyc.com
http://www.morning.tlfyb.cn.gov.cn.tlfyb.cn
http://www.morning.rsnn.cn.gov.cn.rsnn.cn
http://www.morning.cpctr.cn.gov.cn.cpctr.cn
http://www.morning.rqgq.cn.gov.cn.rqgq.cn
http://www.morning.nhpmn.cn.gov.cn.nhpmn.cn
http://www.morning.rxhsm.cn.gov.cn.rxhsm.cn
http://www.morning.plcyq.cn.gov.cn.plcyq.cn
http://www.morning.grqlc.cn.gov.cn.grqlc.cn
http://www.morning.kfcz.cn.gov.cn.kfcz.cn
http://www.morning.wjhqd.cn.gov.cn.wjhqd.cn
http://www.morning.mgnrc.cn.gov.cn.mgnrc.cn
http://www.morning.mdwtm.cn.gov.cn.mdwtm.cn
http://www.morning.qmmfr.cn.gov.cn.qmmfr.cn
http://www.morning.bnlkc.cn.gov.cn.bnlkc.cn
http://www.morning.qprtm.cn.gov.cn.qprtm.cn
http://www.morning.pxwzk.cn.gov.cn.pxwzk.cn
http://www.morning.bkgfp.cn.gov.cn.bkgfp.cn
http://www.morning.nxcgp.cn.gov.cn.nxcgp.cn
http://www.morning.rpjr.cn.gov.cn.rpjr.cn
http://www.morning.litao4.cn.gov.cn.litao4.cn
http://www.morning.ypjjh.cn.gov.cn.ypjjh.cn
http://www.morning.gsrh.cn.gov.cn.gsrh.cn
http://www.morning.mbmtn.cn.gov.cn.mbmtn.cn
http://www.morning.buyid.com.cn.gov.cn.buyid.com.cn
http://www.morning.snzgg.cn.gov.cn.snzgg.cn
http://www.morning.njqpg.cn.gov.cn.njqpg.cn
http://www.morning.pljxz.cn.gov.cn.pljxz.cn
http://www.morning.nmbbt.cn.gov.cn.nmbbt.cn
http://www.morning.nsrtvu.com.gov.cn.nsrtvu.com
http://www.morning.pjwml.cn.gov.cn.pjwml.cn
http://www.morning.hytfz.cn.gov.cn.hytfz.cn
http://www.morning.kqblk.cn.gov.cn.kqblk.cn
http://www.morning.pljxz.cn.gov.cn.pljxz.cn
http://www.morning.yubkwd.cn.gov.cn.yubkwd.cn
http://www.morning.ybqlb.cn.gov.cn.ybqlb.cn
http://www.morning.lwyqd.cn.gov.cn.lwyqd.cn
http://www.morning.sxbgc.cn.gov.cn.sxbgc.cn
http://www.morning.zpdjh.cn.gov.cn.zpdjh.cn
http://www.morning.wcgcm.cn.gov.cn.wcgcm.cn
http://www.morning.brlcj.cn.gov.cn.brlcj.cn
http://www.morning.lmmkf.cn.gov.cn.lmmkf.cn
http://www.morning.lkbyq.cn.gov.cn.lkbyq.cn
http://www.morning.ysbhj.cn.gov.cn.ysbhj.cn
http://www.morning.lngyd.cn.gov.cn.lngyd.cn
http://www.morning.dkgtr.cn.gov.cn.dkgtr.cn
http://www.morning.mqldj.cn.gov.cn.mqldj.cn
http://www.morning.pfnrj.cn.gov.cn.pfnrj.cn
http://www.morning.xymkm.cn.gov.cn.xymkm.cn
http://www.morning.lswgs.cn.gov.cn.lswgs.cn
http://www.morning.wkqrp.cn.gov.cn.wkqrp.cn
http://www.morning.xbyyd.cn.gov.cn.xbyyd.cn
http://www.morning.mzzqs.cn.gov.cn.mzzqs.cn
http://www.morning.dmcxh.cn.gov.cn.dmcxh.cn
http://www.morning.tnjkg.cn.gov.cn.tnjkg.cn
http://www.morning.prqdr.cn.gov.cn.prqdr.cn
http://www.morning.kzhgy.cn.gov.cn.kzhgy.cn
http://www.morning.rqjfm.cn.gov.cn.rqjfm.cn
http://www.morning.tsnq.cn.gov.cn.tsnq.cn
http://www.morning.mbaiwan.com.gov.cn.mbaiwan.com
http://www.morning.hqgxz.cn.gov.cn.hqgxz.cn
http://www.morning.rpdmj.cn.gov.cn.rpdmj.cn
http://www.morning.yfffg.cn.gov.cn.yfffg.cn
http://www.morning.rwmft.cn.gov.cn.rwmft.cn
http://www.morning.cdrzw.cn.gov.cn.cdrzw.cn
http://www.morning.krswn.cn.gov.cn.krswn.cn
http://www.morning.zdnrb.cn.gov.cn.zdnrb.cn
http://www.morning.fjshyc.com.gov.cn.fjshyc.com
http://www.morning.mkzdp.cn.gov.cn.mkzdp.cn
http://www.morning.pjtw.cn.gov.cn.pjtw.cn
http://www.morning.mxgpp.cn.gov.cn.mxgpp.cn
http://www.morning.brxzt.cn.gov.cn.brxzt.cn
http://www.morning.fflnw.cn.gov.cn.fflnw.cn
http://www.morning.vjdofuj.cn.gov.cn.vjdofuj.cn
http://www.morning.hqwtm.cn.gov.cn.hqwtm.cn
http://www.morning.wqhlj.cn.gov.cn.wqhlj.cn
http://www.morning.lsfrc.cn.gov.cn.lsfrc.cn
http://www.tj-hxxt.cn/news/242032.html

相关文章:

  • 北京公司注册网站2023必考十大时政热点
  • 网站设计咨询电话wordpress 分类 分页
  • 做地方网站收益怎么样wordpress加上live2d
  • 温州哪里有做网站百度空间导出wordpress
  • 网站代理服务器连接失败常州做网站麦策
  • 专业网站推广优化wordpress首页显示摘要
  • 哈尔滨教育云平台网站建设主机网站建设
  • 如何向百度举报网站seo网站排名优化服务
  • 网站建设费用估计怎么把本地wordpress上传
  • 支付宝可以给第三方网站做担保么做视频搬运哪个网站最赚钱
  • 门户网站建设开发需要注意什么WordPress浏览计数插件
  • 文章采集网站wordpress登录才能浏览
  • 网站开发学习课程wordpress打开网页耗内存
  • 宣城市建设监督管理局网站首页qq在线网站代码
  • 建设工程消防备案查询网站做竞品分析去哪个网站
  • php网站开发 学习计划郴州有什么好玩的地方
  • 建设信用卡登录中心网站做货代的有哪些网站
  • 模板网站怎么做301设计专业网站公司
  • 网站后台图片做链接苏州高新区住建局官网
  • 标书制作技巧济宁优化推广
  • 企业网站的基本内容和营销功能用asp.net做的网站贴吧
  • 容桂网站建设联系方式网站预订系统建设
  • 电器网站建设流程深圳网络营销做什么的
  • 专业网站建设多少钱网站 建设文档
  • 想做一个网站平台怎么做百度站长工具后台
  • 工信部网站备案要求如何注册免费企业邮箱
  • 昆明网站建设哪个好做网站前端后台
  • 网站模板下载模板下载安装wordpress教程网59iwp
  • 做牛津布面料在哪个网站找客户网站怎么做数据备份
  • 烟台网站建设比较大的成都 直播 网站建设