上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 29 下一页
摘要: ###uni-app应用生命周期 ###uni-app部分页面生命周期 ###vue生命周期(注:这也是Uniapp组件的生命周期) ###uni-app页面生命周期与vue生命周期的对比 ######页面加载过程 加载 → 显示 → 加载完成 → 页面隐藏 → 页面卸载 ######uni-app 阅读全文
posted @ 2020-04-09 10:50 huihuihero 阅读(9612) 评论(0) 推荐(1) 编辑
摘要: 在main.js文件中配置: //Vue.prototype.$baseUrl="http://192.168.1.164/api" //线下接口 Vue.prototype.$baseUrl="https://m.demo.com/api" //线上接口 在demo.vue页面中请求: //GET 阅读全文
posted @ 2020-04-08 16:50 huihuihero 阅读(15097) 评论(9) 推荐(0) 编辑
摘要: ###先贴出uniapp官方icon的说明文档:https://uniapp.dcloud.io/component/uniui/uni-icons ####1、挑选iconfont图标,添加至项目中。并下载至本地 ####2、在项目static文件夹中新建iconfont文件夹,将下载文件中的ic 阅读全文
posted @ 2020-04-08 09:26 huihuihero 阅读(2064) 评论(0) 推荐(1) 编辑
摘要: ##方式一 <div class="content"> <div class="bg_img"> <img src="../../img/bg.png" /> </div> </div> .content { position: fixed; //关键是设置fixed定位,设置后即可通过height 阅读全文
posted @ 2020-03-31 10:24 huihuihero 阅读(190) 评论(0) 推荐(0) 编辑
摘要: let obj={'hero':'yasuo',age:26} obj.hero//点语法 取值 obj['hero'] //中括号语法 取值 obj.skill='hasagei' //点语法 创建键值对 obj['skill']='hasagei' //中括号语法 创建键值对 ####区别 1、 阅读全文
posted @ 2020-03-31 09:42 huihuihero 阅读(1277) 评论(0) 推荐(0) 编辑
摘要: ##animate.css 动画库 介绍:Animate.css 是最早的也是目前最流行和最易于使用的CSS动画库之一,其包含了60多款不同类型的 CSS 动画如晃动、闪动、淡出淡出效果等,如果你想快速的使用各种 CSS 动画特效的话,你可以选择它。 演示地址:https://daneden.git 阅读全文
posted @ 2020-03-27 15:01 huihuihero 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 直接贴代码 要搞清楚这个方法,得先了解js的reduce方法 此博客写的比较清楚 https://www.cnblogs.com/smallpen/p/10249288.html 阅读全文
posted @ 2020-03-19 16:15 huihuihero 阅读(1282) 评论(0) 推荐(0) 编辑
摘要: 因使用ui组件存在一些兼容性问题,故找到以下方法略加改动实现效果 本文转自:https://www.jianshu.com/p/a9e1cf8efbf3 略作改动 阅读全文
posted @ 2020-03-13 12:38 huihuihero 阅读(3019) 评论(2) 推荐(0) 编辑
摘要: ``` isWeChat(){ let ua = navigator.userAgent.toLowerCase(); if (ua.match(/MicroMessenger/i) == "micromessenger") { this.iswx = true //微信端 } else { this.iswx = false; //非微信端 } }, ``` 阅读全文
posted @ 2020-03-10 15:45 huihuihero 阅读(288) 评论(0) 推荐(0) 编辑
摘要: ####兼容方式(仅适用于移动端,pc端对ie浏览器兼容不友好) IE:不管该行有没有文字,光标高度与font-size大小一致 FF:该行没有文字时,光标大小与input的 height 大小一致;该行有文字时,光标大小与font-size大小一致 chrome:有2种情况,①设置了line-he 阅读全文
posted @ 2020-03-10 08:38 huihuihero 阅读(1118) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 29 下一页