会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
欢欢11
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
4
5
6
7
8
9
10
11
12
···
25
下一页
2019年11月1日
css变量实现换肤效果
摘要: export default { ['--body-bgcolor']: '#fff', ['--light-bgcolor']: '#f5f5f5', ['--font-color']: '#4a4a4a', ['--font-color-shallow']: '#404040', ['--fon
阅读全文
posted @ 2019-11-01 18:16 欢欢11
阅读(616)
评论(0)
推荐(0)
2019年10月23日
element-rules
摘要: rules: { expiryOnDate: [ { validator: (rule, value, callback) => { if (!this.item.expiryControlType) { if (this.item.expiryOnDate == null) { callback(
阅读全文
posted @ 2019-10-23 12:17 欢欢11
阅读(220)
评论(0)
推荐(0)
2019年10月16日
css 常用的css小技巧
摘要: // 多行文本 .wrap { width: 100%; overflow: hidden; display: -webkit-box; //将对象作为弹性伸缩盒子模型显示 *必须结合的属性* -webkit-box-orient: vertical; //设置伸缩 盒对象的子元素的排列方式 *必须
阅读全文
posted @ 2019-10-16 09:39 欢欢11
阅读(111)
评论(0)
推荐(0)
2019年10月15日
uni-app中使用外部字体
摘要: 1.下载字体并转换成base64格式 转换链接:https://www.giftofspeed.com/base64-encoder/ 2.创建存放base64文件的css 3.在App.vue中引入 @import './common/font/family.css';
阅读全文
posted @ 2019-10-15 16:50 欢欢11
阅读(13849)
评论(0)
推荐(0)
2019年10月11日
vue开发必须知道的36个技巧
摘要: 转载处:https://juejin.im/post/5d9d386fe51d45784d3f8637
阅读全文
posted @ 2019-10-11 09:41 欢欢11
阅读(1617)
评论(0)
推荐(0)
2019年10月7日
js和css 控制文本框英文字母大写
摘要: CSS通过设置input输入框的style来实现。 text-transform: uppercase /转为大写/ text-transform: lowercase /转为小写/ text-transform: capitalize /单词首字母转为大写/ js: toUpperCase()
阅读全文
posted @ 2019-10-07 11:29 欢欢11
阅读(354)
评论(0)
推荐(0)
获取明天的日期
摘要: getTomorrow(date) { var day3 = new Date(date); day3.setTime(day3.getTime() + 24 * 60 * 60 * 1000); var strMonth = day3.getMonth() + 1; var strDay = day3.getDate(); if (strMonth < 10) { strMonth = "0"
阅读全文
posted @ 2019-10-07 09:44 欢欢11
阅读(972)
评论(0)
推荐(0)
2019年10月4日
vue中使用animate.css实现动画
摘要: 1.npm install animate.css --save2.在main.js中 import animate from 'animate.css';3.使用: animated 不能漏 <view class="content animated fadeInRight">4. fade: {
阅读全文
posted @ 2019-10-04 17:52 欢欢11
阅读(779)
评论(0)
推荐(0)
1小时搞定cropper.js制作头像/图片上传、裁剪、并发送至后端
摘要: https://juejin.im/post/5d905a1b518825093b5fd48e
阅读全文
posted @ 2019-10-04 15:29 欢欢11
阅读(306)
评论(0)
推荐(0)
2019年9月26日
ES6-- rest参数
摘要: (...x)Rest 参数接受函数的多余参数,组成一个数组
阅读全文
posted @ 2019-09-26 21:56 欢欢11
阅读(128)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
9
10
11
12
···
25
下一页
公告