会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
南瓜壳
博客园
首页
新随笔
联系
管理
1
2
3
4
5
···
26
下一页
2025年10月29日
数字滚动
摘要: <span class="timers" data-to="10000" data-speed="1500">10000</span> 最外层父级 timerbox
阅读全文
posted @ 2025-10-29 11:41 南瓜壳
阅读(3)
评论(0)
推荐(0)
2025年10月22日
格式化金额最小0.01 最大999999.99 且只能输入两位小数
摘要: const formatAmount = (val) => { val = String(val).replace(/[^0-9.]/g, ''); if (!/[\d.]/.test(val)) return ''; if (val > 999999.99) return '999999.99';
阅读全文
posted @ 2025-10-22 10:05 南瓜壳
阅读(4)
评论(0)
推荐(0)
2025年7月2日
常用资源插件记录
摘要: 微信小程序 wx-calendar 项目地址:https://gitcode.com/gh_mirrors/wxcale/wx-calendar https://github.com/lspriv/wx-calendar 日历插件 微信小程序日历组件 https://treadpit.github.
阅读全文
posted @ 2025-07-02 10:12 南瓜壳
阅读(20)
评论(0)
推荐(0)
2025年6月23日
uni-app限制用户输入两位小数处理(限制用户输入控制)
摘要: 记得要加 nexttick才生效
阅读全文
posted @ 2025-06-23 10:20 南瓜壳
阅读(288)
评论(0)
推荐(0)
2025年6月18日
重新定义checkbox样式 (uniapp成功设置)
摘要: <checkbox :value="item.transId" class='record-checkbox' color='#FF7D0B' style="transform:scale(0.8)" v-if='item.transStatus == "1"' /> .record-checkbo
阅读全文
posted @ 2025-06-18 10:27 南瓜壳
阅读(201)
评论(0)
推荐(0)
2025年6月4日
小程序分包
摘要: https://blog.csdn.net/weixin_72363836/article/details/146902023
阅读全文
posted @ 2025-06-04 13:36 南瓜壳
阅读(5)
评论(0)
推荐(0)
2025年5月12日
微信内置浏览器不能自动播放视频解决方法
摘要: document.addEventListener('WeixinJSBridgeReady', function () { document.getElementById('media').play() }) iso端解决方案 以下是安卓端 var userAgent = navigator.us
阅读全文
posted @ 2025-05-12 17:23 南瓜壳
阅读(463)
评论(0)
推荐(0)
2025年4月8日
记录fullpage中使用swiper
摘要: $(window).resize(function () { Sizeload(); }); Sizeload(); var myFullpage; function Sizeload() { var winWidth = $(window).width(); console.log(winWidt
阅读全文
posted @ 2025-04-08 15:29 南瓜壳
阅读(15)
评论(0)
推荐(0)
2025年3月31日
vue项目安装报错vue为undefined
摘要: 原因是vue-loader安装失败 重新安装vue-loader
阅读全文
posted @ 2025-03-31 18:33 南瓜壳
阅读(27)
评论(0)
推荐(0)
2025年3月25日
vue可拖动组件
摘要: 组件代码 <template> <div class="draggable" :style="{ transform: `translate(${position.x}px, ${position.y}px)` }" @mousedown="startDrag" > <slot></slot> </
阅读全文
posted @ 2025-03-25 15:13 南瓜壳
阅读(12)
评论(0)
推荐(0)
1
2
3
4
5
···
26
下一页
公告