会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
wmui
首页
新随笔
管理
上一页
1
···
41
42
43
44
45
46
47
48
49
下一页
2017年4月24日
正则匹配括号中内容
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> var reg = /\((.+?)\)/g; var reg2 = /\((
阅读全文
posted @ 2017-04-24 09:47 wmui
阅读(2791)
评论(0)
推荐(0)
2017年4月23日
vue-resource和vue-axios的简单使用方法
摘要: 两者其实差别不大,都是基于es6的Promise对象实现的方法 vue-resource: main.js => import Vue from 'vue'; import VueResource from 'vue-resource'; Vue.use(VueResource); 组件里面使用=>
阅读全文
posted @ 2017-04-23 12:03 wmui
阅读(9323)
评论(1)
推荐(1)
2017年4月21日
vue时间格式化
摘要: export function formatTime(date, fmt) { if (/(y+)/.test(fmt)) { fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substring(4 - RegExp.$1.length)
阅读全文
posted @ 2017-04-21 00:12 wmui
阅读(37114)
评论(4)
推荐(1)
2017年4月20日
css背景图等比例缩放,盒子随背景图等比例缩放
摘要: 很多时候我们给网站了一个大banner,但是随着屏幕的变化,背景会变形,我们知道background-size可以实现背景图等比例缩放,但是,我们想让下面的盒子根据缩放后背景图的高度,也能自动向上挤。这用css竟然也是可以实现的,瞬间感觉自己的css弱爆了,下面是我写的小demo,我想在响应式的网站
阅读全文
posted @ 2017-04-20 12:57 wmui
阅读(8808)
评论(0)
推荐(1)
2017年4月12日
js节流函数高级版
摘要: 节流函数其主要作用就是防止用户在短时间内多次触发该事件。 简单高效的方法:
阅读全文
posted @ 2017-04-12 22:54 wmui
阅读(742)
评论(0)
推荐(1)
vue实现百度搜索下拉提示功能
摘要: 这段代码用到vuejs和vue-resouece。实现对接智能提示接口,并通过上下键选择提示项,按enter进行搜索 效果图: 这个ajax请求没有做节流,很多时候需要限制ajax频繁请求,可以小改一下:
阅读全文
posted @ 2017-04-12 21:55 wmui
阅读(5135)
评论(0)
推荐(1)
2017年4月10日
vue实现图片点击放大
摘要: 用的vue-cli开发的项目,下面是具体实现代码 子组件: 父组件: 效果图:
阅读全文
posted @ 2017-04-10 14:58 wmui
阅读(35934)
评论(4)
推荐(2)
2017年4月9日
css图片宽高相等设置
摘要: 最终图片以正方形显示
阅读全文
posted @ 2017-04-09 22:10 wmui
阅读(8568)
评论(0)
推荐(0)
2017年4月4日
sublime常用插件及配置
摘要: 以下是我的sublime插件列表: SideBarEnhancements增强版侧边栏 这个插件官方不支持通过package安装了,只能手动了,下载地址https://github.com/SideBarEnhancements-org/SideBarEnhancements,解压后复制到sub
阅读全文
posted @ 2017-04-04 16:20 wmui
阅读(292)
评论(0)
推荐(0)
css揭秘读书笔记
摘要: currentColor属性让hr和段落相同的颜色: div { color: red; } hr { background: currentColor; /* 一定要设置高度*/ height: 0.1rem; } <div> <p><hr>p里面的hr标签不变色<hr></p> <hr> </d
阅读全文
posted @ 2017-04-04 11:19 wmui
阅读(208)
评论(0)
推荐(0)
上一页
1
···
41
42
43
44
45
46
47
48
49
下一页
公告