语法: text-shadow : color x-offset y-offset blur-radius; color 阴影颜色 x-offset X轴位移,用来指定阴影水平位移量 y-offse Y轴位移,用来指定阴影垂直位移量 blur-radius 阴影模糊半径,代表阴影向外模糊的模糊范围 ...
分类:
其他好文 时间:
2020-07-15 01:12:38
阅读次数:
68
本文的校验有两个要去,1是必填,2填写的必须是中文 将校验规则改为 validate: [ { required: true, message: "请输入goods_name", trigger: "blur" }, //必填校验 { //正则匹配 required: true, pattern: ...
分类:
其他好文 时间:
2020-07-07 12:54:54
阅读次数:
50
实现毛玻璃效果 使用CSS实现毛玻璃效果,使用CSS滤镜filter中的blur属性实现。 实现 首先定义一个填充满整个屏幕的背景。 <style type="text/css"> body{ width: 100vw; height: 100vh; margin: 0; background-im ...
分类:
其他好文 时间:
2020-07-06 12:35:10
阅读次数:
81
表单: 确保element-ui引进引入,或者按需引入时,引入对应的组件 1.简单结构实例: <el-form label-width='0px'> <el-form-item> <el-input></el-input> </el-form-item> <el-form-item> <el-but ...
分类:
其他好文 时间:
2020-07-04 13:11:08
阅读次数:
68
CSS 中文开发手册 滤镜效果 | Filter Effects (Filter Effects) - CSS 中文开发手册 滤镜效果是CSS的一个模块,它定义了元素在文档中显示之前,对其渲染效果的一种处理方式。 参照系 特性 filter功能blur()%28滤镜#模糊%28%29%29brigh... ...
分类:
Web程序 时间:
2020-07-02 00:14:47
阅读次数:
68
1、需要在return中添加验证规则 *添加规则* `data() { return { rules:{ quota: [{ required: true, message: '请填写配额数', trigger: 'blur' }] } } } ` 2、el-form 需要添加:rules *使用规 ...
分类:
其他好文 时间:
2020-07-01 09:59:14
阅读次数:
209
<input id="sjmc" class="easyui-combobox" data-bind="easyuiValue:SR_BUSINESS.SJMC" data-options="events:{blur: function(){ alert('提示') }}" /> <input id ...
分类:
其他好文 时间:
2020-06-30 10:31:05
阅读次数:
92
一、jQuery的事件机制 1、常见的事件绑定 - click(handler) 单击事件。 - blur(handler) 失去焦点事件。 - mouseenter(handler) 鼠标进入事件。 - mouseleave(handler) 鼠标离开事件。 - dbclick(handler) ...
分类:
Web程序 时间:
2020-06-28 12:39:35
阅读次数:
71
今日学习内容: css3: fliter : blur(); (模糊化)数值越大越模糊 width : clac(100% - 10px); 计算盒子宽度 transition : width/all 1s/5s linear(匀速)、ease(逐渐慢下来)、easr-in(加速)、ease-out ...
分类:
其他好文 时间:
2020-06-28 00:19:19
阅读次数:
66
//1.定义focus事,绑定属性 <el-input v-model="headerInput" @focus="onInputFocus" @blur="onInputBlur":style="thisStyle"> </el-input> thisStyle:'',//2.获得焦点事件 onI ...
分类:
其他好文 时间:
2020-06-22 18:53:50
阅读次数:
394