摘要: 修改jar包中的class文件,重新打包成jar(原MANIFEST.MF保持不变) 不使用ide(如idea,eclipse)版,但会使用到jd-gui (项目首页 - JD-GUI1.6.6最新版下载:本仓库提供JD-GUI 1.6.6最新版的下载资源。该版本解决了反编译保存异常的问题,确保用户 阅读全文
posted @ 2024-12-17 09:56 YuigahamaYui 阅读(2228) 评论(0) 推荐(0)
摘要: 在使用scroll-view的过程中,遇到了在更换不同的展示机型后,自定义的导航栏随着滑动窗口一起滚动,或者有一块白色区域仿佛固定在视图底部一般 究其原因,因为我在给滑动窗口的高度赋值的时候,使用了vh做单位,但是自定义导航栏的高度却使用rpx做单位,导致一些机型这两块高度加起来或是大于100vh或 阅读全文
posted @ 2021-10-31 16:00 YuigahamaYui 阅读(148) 评论(0) 推荐(0)
摘要: 可以直接使用绝对定位确定位置,但可能会因为机型不同而导致位置出现小偏差 但今天前辈教我用另一种方式 使用使用右上角的胶囊的坐标计算 小程序官方文档给出了获取胶囊位置的方法,可以在js的data中引入 1 wx.getMenuButtonBoundingClientRect().top, 2 wx.g 阅读全文
posted @ 2021-10-31 15:37 YuigahamaYui 阅读(165) 评论(0) 推荐(0)
摘要: 微信小程序自带的导航栏样式有一定限制 1 { 2 "navigationBarBackgroundColor": "#ffffff", 3 "navigationBarTextStyle": "black", 4 "navigationBarTitleText": "微信接口功能演示", 5 "ba 阅读全文
posted @ 2021-10-31 15:07 YuigahamaYui 阅读(53) 评论(0) 推荐(0)
摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2020-09-13 20:34 YuigahamaYui 阅读(230) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>条件渲染v-show</title> </head> <body> <!-- 条件渲染指令除了v-if,还有v-show,v-show指令通过改变元素的disp 阅读全文
posted @ 2020-09-10 20:37 YuigahamaYui 阅读(169) 评论(0) 推荐(0)
摘要: 演示 源码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="app"> <p v-if="vip==0">穷逼</p> <p v-e 阅读全文
posted @ 2020-09-10 20:15 YuigahamaYui 阅读(159) 评论(0) 推荐(0)
摘要: bug图:选中id为5的元素,在最上添加元素后,变成了选中id为4的元素 bug源码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id= 阅读全文
posted @ 2020-09-10 17:32 YuigahamaYui 阅读(300) 评论(0) 推荐(0)
摘要: <!--一句话总结 vue中循环指令v-for可以循环数组(v-for="item in list")、循环对象(v-for="(val,key) in obj")、循环数字(v-for="count in 10") 1、v-for循环数组:<p v-for="item in list">{{ite 阅读全文
posted @ 2020-09-10 16:28 YuigahamaYui 阅读(870) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>class类绑定</title> <style> .red{color: red} .big{font-size: 30px} .big-1{font-size 阅读全文
posted @ 2020-09-10 10:18 YuigahamaYui 阅读(284) 评论(0) 推荐(0)
码云地址:https://gitee.com/pan-hui