摘要: WebView的使用详解 消失的小尾巴刀 2017-09-15 16:32:51 21598 收藏 14分类专栏: Android基础版权WebView现在Android开发基本都会用到WebView,所以自己准备系统的整理下,供自己学习之用. 1.简介WebView是一个基于webkit引擎、展现 阅读全文
posted @ 2020-07-15 09:01 竹子up 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 移动端Vant UI使用注册的两种方式 Excellent ! 2020-02-20 13:25:44 548 收藏 1分类专栏: 移动端版权全局注册:main.js 中:import { Tab, Tabs,Step, Steps ,NavBar ,Toast ,Field ,Icon,Check 阅读全文
posted @ 2020-07-14 20:55 竹子up 阅读(2377) 评论(0) 推荐(0) 编辑
摘要: { "editor.fontFamily": "Menlo, Consolas, 'Courier New', monospace", "editor.fontLigatures": true, "editor.fontSize": 24, "editor.fontWeight": "500", " 阅读全文
posted @ 2020-07-14 19:43 竹子up 阅读(1372) 评论(1) 推荐(0) 编辑
摘要: 1 Git生成秘钥 1.1 确认本地秘钥 SSH 秘钥默认储存在账户的主目录下的 ~/.ssh 目录如:C:\Users\BF100400\.ssh\查看是否包含id_rsa和id_rsa.pub(或者是id_dsa和id_dsa.pub之类成对的文件),有.pub 后缀的文件就是公钥,另一个文件则 阅读全文
posted @ 2020-07-13 20:26 竹子up 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 搞清clientHeight、offsetHeight、scrollHeight、offsetTop、scrollTop 网页可见区域高:document.body.clientHeight 网页正文全文高:document.body.scrollHeight网页可见区域高(包括边线的高):docu 阅读全文
posted @ 2020-07-11 11:59 竹子up 阅读(127) 评论(0) 推荐(0) 编辑
摘要: vue的三种图片引入方式 首先给图片地址绑定变量: <template> <img :src="imgUrl"> </template> 在script中设置变量: //方法1:直接将图片引入为模块 require imgUrl from "../assets/test.png" //方法2:把im 阅读全文
posted @ 2020-07-09 15:21 竹子up 阅读(32353) 评论(0) 推荐(0) 编辑
摘要: Android精华篇 - App中原生页面 VS H5页面 Guo_IT 2016-12-20 13:01:26 3505 收藏 1 分类专栏: android 前端 现有3类主流APP,分别为:Web App、Hybrid App(混合模式移动应用,Hybrid有“混合的”意思)、 Native 阅读全文
posted @ 2020-07-04 17:24 竹子up 阅读(132) 评论(0) 推荐(0) 编辑
摘要: <template> <transition name="slide"> <div class="search_page"> 123 </transition> </template> <script> export default { name: "SearchPage", components: 阅读全文
posted @ 2020-07-04 11:12 竹子up 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 1、Math.round() “四舍五入”, 该函数返回的是一个四舍五入后的的整数 double d = 3.1415926; double d2 = 18.58; double d3 = -15.23; double d4 = -16.85; long round1 = Math.round(d) 阅读全文
posted @ 2020-07-04 09:20 竹子up 阅读(589) 评论(0) 推荐(0) 编辑
摘要: Use Setup Install vue2-better-scroll yarn add vue2-better-scroll // or npm install vue2-better-scroll -s Vue mount // import import Vue from 'vue' imp 阅读全文
posted @ 2020-07-04 09:03 竹子up 阅读(644) 评论(0) 推荐(0) 编辑