今天写微信小程序遇到一个问题:给page加 150rpx 的 padding-bottom 值,我考虑到 iphone X 系列的底部黑线,参考我之前写的css属性——env()和constant()设置安全区域;所以我这样写: page{ padding-bottom: calc( constan ...
分类:
Web程序 时间:
2021-04-22 16:05:25
阅读次数:
0
<UIDocumentPickerDelegate> @property (nonatomic, strong) UIDocumentPickerViewController *documentPickerVC; /** 初始化 UIDocumentPickerViewController 选文件啊 ...
分类:
其他好文 时间:
2021-04-22 16:03:31
阅读次数:
0
技术栈 前端 语言 HTML5,CSS3,ECMAScript 6 HTML是网页内容的载体,CSS用于以不同样式表示网页内容,ECMAScript(JavaScript)用于实现网页特殊效果 应用开发框架 Vue.js Vue (读音 /vju?/,类似于 view) 是一套用于构建用户界面的渐进 ...
分类:
其他好文 时间:
2021-04-22 16:01:59
阅读次数:
0
记录一下我vs code用到的插件及配置文件 { "workbench.colorTheme": "Visual Studio Light", "workbench.sideBar.location": "left", "editor.accessibilitySupport": "off", "w ...
分类:
其他好文 时间:
2021-04-22 15:38:33
阅读次数:
0
Java执行groovy脚本的两种方式 记录Java执行groovy脚本的两种方式,简单粗暴: 一种是通过脚本引擎ScriptEngine提供的eval(String)方法执行脚本内容;一种是执行groovy脚本; 二者都通过Invocable来传递参数并获取执行结果; Invocable:脚本引擎 ...
分类:
编程语言 时间:
2021-04-22 15:31:17
阅读次数:
0
#多维列表(嵌套列表) #[[姓名,年龄,工资],[姓名,年龄,工资],[姓名,年龄,工资],[姓名,年龄,工资]] #字符串:"姓名,年龄,工资"例如: "张三,30,2000" emp_list = [] while True: info = input("请输入员工信息:") if info ...
分类:
其他好文 时间:
2021-04-22 15:26:09
阅读次数:
0
1.记录索引交换 class Solution { public: int minSwapsCouples(vector<int>& row) { int len=row.size(); vector<int> idx(len,-1); int ret=0; for(int i=0;i<len;++ ...
分类:
其他好文 时间:
2021-04-22 15:12:46
阅读次数:
0
如果用了display:inline-block;标签换行时就会出现间隙。如果必须用的话就改变div默认样式: div{margin:0;padding:0;} 改成 div{margin:0;padding:0;font-size: 0;} ...
分类:
其他好文 时间:
2021-04-21 13:00:02
阅读次数:
0
本人被el-upload的上传困扰了许久,查阅了不少资料,暂时是解决了 主要就是对el-upload实现上传图片的途径的不理解 先贴代码,之后在做分析吧 vue部分 <div class="pic"> <el-image class="userImg" :src="localUserImg"> <d ...
分类:
Web程序 时间:
2021-04-21 12:59:14
阅读次数:
0
Vue 使用 BIMFACE 实现3D着火demo 官网: https://bimface.com/ 案例: https://bimface.com/developer-jsdemo#1011 <template> <div style="height: 90%;"> <button class=" ...
分类:
其他好文 时间:
2021-04-21 12:56:52
阅读次数:
0