在fluid主题中加入Google广告 在fluid主题中加入Google广告 在fluid的官方文档中,提供了在fluid主题中加入Google广告的方法,但是其中提到的参数data-ad-slot并没有说清怎么获取,所以我决定详细写一下如何获取。 注册Google Adsense 访问Google Adsense,注册一个账号,然后点击右侧的广告。 创建一个广告单元 选择上方的按广告单元 这里我选择了推荐的展示广告 接着自定义 2023-01-27 踩坑
jsdelivr加速Github文件 假设GitHub路径为https://github.com/username/repo-name/path/to/file ,用jsdelivr可以加速或者在html中引用,路径为https://cdn.jsdelivr.net/gh/username/repo-name/path/to/file 这里实现了一个简单的链接转换函数,可以将GitHub路径转换为jsdelivr路径 12345678 2023-01-20 工具
ThreeJS导入失败 问题描述 12345-index.html -src.js-node_modules -three -... 在src.js 中用如下方式导入ThreeJS 1import * as THREE from 'three'; index.html body如下 123<body> <script type="module" src=& 2023-01-13 踩坑 #ThreeJS
摄像机模型 摄像机模型 本文是鲁鹏老师机器视觉课程的笔记 针孔模型与透镜 image.png image.png 虚拟像平面是倒着的 image.png image.png \(\dfrac{y'}{f}=\dfrac{y}{z}\quad\implies y'=f\dfrac{y}{z}\) \(\dfrac{x'}{f}=\dfrac{x}{z}\quad\ 2022-12-29 工具 #机器视觉