分类:学习笔记

note

vue 进度条效果样式

vue 进度条效果样式
更多进度条效果实例 vue 数据可视化大屏进度条效果实例 组件代码 /** * @Author: 858834013@qq.com * @Name: jindu * @Date: 2022-11-30 * @Desc: */ <template> <div...

3年前 (2022-11-30) 喜欢

echarts 异形柱状图效果

echarts 异形柱状图效果
echarts 异形柱状图效果 实现代码 drawLine() { var that = this // 基于准备好的dom,初始化echarts实例 window.addEventListener('resize', this.drawLine) const ...

3年前 (2022-11-30) 喜欢

vue 水桶效果水面上浮效果

vue 水桶效果水面上浮效果
最近一个vue大屏项目用到了一个水桶的界面,要求水面有个增高的动画而不是固定死的,于是把实现效果记录一下。 /** * @Author: 858834013@qq.com * @Name: index * @Date: 2022-11-30 * @Desc: */ <te...

3年前 (2022-11-30) 喜欢

uniapp map markertap点击无效问题

uniapp map markertap点击无效问题
uniapp项目开发时, map点击markers后,markertap事件没有反应,排查发现是因为数据里没有id。修改一下数据,追加一个id字段就可以了。 <map class="allmap" @markertap="getMarker&q...

3年前 (2022-11-28) 喜欢

最近数据库mysql总是停止

最近数据库mysql总是停止
最近数据库mysql总是莫名其妙的停止,于是想到了宝塔的计划任务,想看看效果怎么样 添加Shell脚本,定时检测数据库是否运行未运行则自动重启 pgrep -x mysqld &> /dev/null if [ $? -ne 0 ];then bas...

3年前 (2022-11-25) 喜欢

uniapp微信小程序the height 7410 has exceeded the limit 4096

uniapp微信小程序the height 7410 has exceeded the limit 4096
uniapp微信小程序canvas的时候会报错会报这个错误, the height 7410 has exceeded the limit 4096 问题 微信小程序canvas空白,在开发工具里都可以正常显示,但是在真机里却是空白, 原因 原因是微信小程序canvas画布最大...

3年前 (2022-11-24) 喜欢

vue 项目 使用three 实现3d模型渲染GLTF文件

vue 项目 使用three 实现3d模型渲染GLTF文件
最近vue项目需要渲染3d模型,将实现效果记录一下,便于后续直接复用,代码来自于github 项目源地址 git源地址 安装依赖 npm i three --save 关键代码记录 <template> <div ref='canvasGLTF' clas...

3年前 (2022-11-23) 喜欢