摘要: ```/* 自定义封装文件:flexScss.scss *//* @mixin混入,默认center,center,编写公共sass函数 */@mixin flex-justify-align($justify-content:center,$align-items:center){ display: flex; justify-content:$justify-content; ... 阅读全文
posted @ 2020-04-22 15:01 Yogic 阅读(965) 评论(0) 推荐(1) 编辑
摘要: 以下包为依赖关系,npm和yarn时需同步安装 sass/scss = sass loader node sass/dart sass (第一个依赖第二个) less/less = less loader less (第一个依赖第二个) stylus/styl = stylus loader sty 阅读全文
posted @ 2020-04-22 14:48 Yogic 阅读(690) 评论(0) 推荐(0) 编辑
摘要: git status 查看有哪些修改,查看修改文件文件路径 git add. file1 file2【多文件之间用空格分开,file1,file2为status时显示的路径】 或者git add folder1/. folder2/.【文件夹,用'/.',空格,实现add文件夹下多文件】 git c 阅读全文
posted @ 2020-04-22 13:58 Yogic 阅读(2951) 评论(0) 推荐(0) 编辑
摘要: 利用= 父元素= 单线不需要倒角= 多线需要倒角= 多线需要倒角= 阅读全文
posted @ 2020-04-22 13:48 Yogic 阅读(488) 评论(0) 推荐(0) 编辑
摘要: animate.css【高质量的第三方CSS 动画库】 1. 安装 $ npm install animate.css save 2. 引入 vue cli创建的项目,main.js中 import 'animate.css' 3. 使用【常规的DOM标签】 Example animated是必不可 阅读全文
posted @ 2020-04-22 13:43 Yogic 阅读(303) 评论(0) 推荐(0) 编辑
摘要: transition:transition property transition duration transition timing function transition delay 解析:变换属性 变换时长 变换函数 变换开始时间点 常用配置 : all ms ease 缓慢加载实践方法: 阅读全文
posted @ 2020-03-12 17:32 Yogic 阅读(1999) 评论(0) 推荐(0) 编辑
摘要: 废话就不说了,就下面一张表 阅读全文
posted @ 2019-07-10 20:00 Yogic 阅读(2305) 评论(0) 推荐(0) 编辑
摘要: 企业微信,这玩意和钉钉基本没区别,主打企业移动办公,弱化了社交,强化了企业服务 起步比钉钉晚,格局分布基本一样,自建应用和第三方应用 开发第三方应用就不说了,下面说说开发配置自建应用吧: 1.注册登录企业微信,创建公司(这里面会有个企业id需要记下来,这个id后面掉微信接口要用): 2.创建自建应用 阅读全文
posted @ 2019-07-10 19:55 Yogic 阅读(6027) 评论(0) 推荐(0) 编辑
摘要: axios简要说明及使用原因 axios 是一个基于Promise 用于浏览器和 nodejs 的 HTTP 客户端,它本身具有以下特征: 从浏览器中创建 XMLHttpRequest 从 node.js 发出 http 请求 支持 Promise API 拦截请求和响应 转换请求和响应数据 取消请 阅读全文
posted @ 2019-06-18 17:48 Yogic 阅读(4369) 评论(0) 推荐(0) 编辑
摘要: npm install font-awesome -S 引入 然后在需要的页面引入 font-awesome/css/font-awesome.min.css 可以css引入@import "font-awesome/css/font-awesome.css"; 阅读全文
posted @ 2019-06-18 17:21 Yogic 阅读(4974) 评论(0) 推荐(1) 编辑