上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: 1.是否是数字适用于小数加整数 /^\d+(\.\d+)*$/ 2.是否是中文加英文加数字 /[^\a-\z\A-\Z0-9\u4E00-\u9FA5]/ 阅读全文
posted @ 2021-09-27 14:07 瑞瑞大人 阅读(7) 评论(0) 推荐(0) 编辑
摘要: webpack的作用: 模块打包(可以将不同模块的文件打包整合在一起,并且保证它们之间的引用正确,执行有序) 利用打包我们就可以在开发的时候根据我们自己的业务自由划分文件模块,保证项目结构的清晰和可读性。 编译兼容(通过webpack的Loader机制) 在前端的“上古时期”,手写一堆浏览器兼容代码 阅读全文
posted @ 2021-09-26 16:20 瑞瑞大人 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 在H5页面中跳转到地图App,或者在本地App中加载的H5页面跳转到地图App,唤起App进行导航; 1、腾讯地图: 调用方式: http://apis.map.qq.com/uri/v1/marker?marker=coord:lat,lng;addr:address 其中lat、lng、addr 阅读全文
posted @ 2021-09-03 10:49 瑞瑞大人 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 1.基本类型 布尔值 let isDone: boolean = false; 字符串 let name: string = "bob"; 数字 let decLiteral: number = 6; 数组-可以在元素类型后面接上 [],表示由此类型元素组成的一个数组 let list: numbe 阅读全文
posted @ 2021-09-02 14:32 瑞瑞大人 阅读(36) 评论(0) 推荐(0) 编辑
摘要: export function timeFormat(time: Date, type: string) { // yyyy MM dd hh:mm:ss const year = `${time.getFullYear()}`; const month = (time.getMonth() + 1 阅读全文
posted @ 2021-09-02 14:30 瑞瑞大人 阅读(7) 评论(0) 推荐(0) 编辑
摘要: .num-box { position: relative; overflow: hidden; } .num-box::before { position: absolute; top: 0; left: 0; box-sizing: border-box; width: 200%; height 阅读全文
posted @ 2021-08-25 11:25 瑞瑞大人 阅读(243) 评论(0) 推荐(0) 编辑
摘要: screen.height:用户屏幕高度screen.availHeight:用户屏幕可用高度,减去了窗口工具值类的界面特征window.innerHeight:浏览器窗口的视口高度,包括水平滚动条window.outerHeight:浏览器窗口外部高度document.body.offsetHei 阅读全文
posted @ 2021-08-18 16:01 瑞瑞大人 阅读(55) 评论(0) 推荐(0) 编辑
摘要: padding-top: constant(safe-area-inset-top); padding-top: env(safe-area-inset-top); padding-bottom: constant(safe-area-inset-bottom); padding-bottom: e 阅读全文
posted @ 2021-08-18 15:55 瑞瑞大人 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 发现一个打开或者下载app的神仙写法 <meta name="apple-itunes-app" content="app-id=432274380" /> 这个标签是告诉iphone的safari浏览器,这个网站对应的app是什么,然后在页面上面显示一个下载banner 文档:https://de 阅读全文
posted @ 2021-07-20 17:27 瑞瑞大人 阅读(274) 评论(0) 推荐(0) 编辑
摘要: iOS2.0中的手势事件:gesture事件 下面的事件只能在iOS中运行。在iOS中档两个手指操作的时候,就会产生手势,手势通常用于改变显示元素的大小,或者旋转显示的元素。手势事件分为三种:1.gesturestart:当一个手指已经按在屏幕上,另一个手指又触摸屏幕的时候触发。类似于touchst 阅读全文
posted @ 2021-07-16 11:36 瑞瑞大人 阅读(374) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页