上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 35 下一页
摘要: 官方文档说明书 官方示例 1.安装 heatmapjs // NPM npm i heatmapjs // 或者 yarn yarn add heatmapjs 2.导入h337 import h337 from 'heatmapjs'; 3.定义全局变量(在react中可用useRef做一个集合来 阅读全文
posted @ 2022-09-21 17:38 SimoonJia 阅读(620) 评论(0) 推荐(0)
摘要: 一般都用自定义的前进后退按钮: <!-- 导航按钮 --> <div class="arrowCard swiper-button-prev"> <img src="assets/arrow01.svg" alt="云智慧" /> </div> <div class="arrowCard swipe 阅读全文
posted @ 2022-09-09 14:31 SimoonJia 阅读(1628) 评论(0) 推荐(0)
摘要: 对图片进行剪切,保留原始比例: img.a { width: 200px; height: 400px; object-fit: cover; } 标签定义及使用说明 object-fit 属性指定元素的内容应该如何去适应指定容器的高度与宽度。 object-fit 一般用于 img 和 video 阅读全文
posted @ 2022-09-09 10:26 SimoonJia 阅读(75) 评论(0) 推荐(0)
摘要: 如果如果需要计算圆的相关数值,需要用到:a(对边),b(临边),c(斜边),角A 2、JS知识: Math.sin(x) 和 Math.cos(x) 中的x是弧度,不是角度,所以需要用到: 公式(角度转弧度):弧度 = 2*π / 360 * 角度 (π / 180 * 角度) 简化到实用中: 求圆 阅读全文
posted @ 2022-09-06 11:12 SimoonJia 阅读(607) 评论(0) 推荐(1)
摘要: 使用URLSearchParams(location.search)方法 let params = new URLSearchParams(location.search); console.log(params); 阅读全文
posted @ 2022-08-29 10:59 SimoonJia 阅读(151) 评论(0) 推荐(0)
摘要: geoselectchanged Event ACTION: geoToggleSelect geo 中地图区域切换选中状态的事件。 用户点击选中会触发该事件。 { type: 'geoselectchanged', // 系列 ID,可以在 option 中传入 seriesId: string, 阅读全文
posted @ 2022-08-23 18:48 SimoonJia 阅读(2055) 评论(0) 推荐(0)
摘要: function render() { renderer.render(scene, camera); //执行渲染操作 // mesh.rotateY(0.01);//每次绕y轴旋转0.01弧度 requestAnimationFrame(render); //请求再次执行渲染函数render } 阅读全文
posted @ 2022-08-22 18:02 SimoonJia 阅读(39) 评论(0) 推荐(0)
摘要: const width = window.innerWidth; const height = window.innerHeight; 阅读全文
posted @ 2022-08-22 11:19 SimoonJia 阅读(106) 评论(0) 推荐(0)
摘要: /* 不使用CSS变量 */ .title { background-color: red; } .desc { background-color: red; } /* 使用CSS变量 */ :root { --bg-color: red; } .title { background-color: 阅读全文
posted @ 2022-08-19 09:37 SimoonJia 阅读(21) 评论(0) 推荐(0)
摘要: 1. 使用媒体查询时,如果在某浏览器宽度不想使某个元素拥有宽度,设置“”或者none都不能阻止元素继承上一个media里的height属性 可为元素设置。height:auto; 即可清除元素继承的高度属性,达成需求。 2.普通dom继承父类Width或者Height 为其父元素设置display: 阅读全文
posted @ 2022-08-11 18:08 SimoonJia 阅读(503) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 35 下一页