:root { --bg-color: white; /*change background*/ --text-color: black; /*change text color*/ --md-char-color: #C7C5C5; /*change color of meta characetr ...
分类:
其他好文 时间:
2020-07-21 00:59:10
阅读次数:
457
一、定义样式 <style> .blueBack { background-color: blue; } .yellowBack { background-color: yellow; } </style> 二、定义两个按钮,一个div <div id="vueFirst"> <div :class ...
分类:
Web程序 时间:
2020-07-19 15:56:07
阅读次数:
158
<%-- Created by IntelliJ IDEA. User: xinfeng Date: 2020/5/8 Time: 15:58 To change this template use File | Settings | File Templates. --%> <%@ page co ...
分类:
Web程序 时间:
2020-07-19 13:54:02
阅读次数:
82
一、preparation 1、download starter-template-master 2、command line-->cnpm install 3、change "{{ name }}"(package.json) to your project name 4、command line ...
分类:
其他好文 时间:
2020-07-19 13:50:08
阅读次数:
76
<%-- Created by IntelliJ IDEA. User: xinfeng Date: 2020/5/8 Time: 15:58 To change this template use File | Settings | File Templates. --%> <%@ page co ...
分类:
Web程序 时间:
2020-07-19 11:53:15
阅读次数:
84
<%-- Created by IntelliJ IDEA. User: xinfeng Date: 2020/5/22 Time: 10:00 To change this template use File | Settings | File Templates. --%> <%@ page c ...
分类:
Web程序 时间:
2020-07-19 11:52:27
阅读次数:
116
在配置hadoop集群时,时间同步是必须要做的,否则会出现各种意想不到的问题。 hadoop102 为 ntp server,hadoop103以及hadoop104 为ntp client(即需要同步时间机器) 1.全部机器都要安装ntp以及ntpdate sudo apt-get install ...
分类:
系统相关 时间:
2020-07-18 16:09:18
阅读次数:
143
1.<iframe></iframe>标签 iframe(inner frame)为内联框架,iframe元素是可以创建包含另外一个文档的行内框架,是body 的子集 常用属性: width 设置内联框架的宽度 height 设置内联框架的高度 name 设置框架的名称 src 设置页面内容的路径 ...
分类:
Web程序 时间:
2020-07-18 11:17:39
阅读次数:
77
EF虽然是一个晚生畸形的ORM框架,但功能强大又具有灵活性的,给了开发人员一定的发挥空间。因为微软出发点总是好的,让开发变得简单,但实际上不是所有的事情都这么理想。这里顺便推荐马丁大叔的书《企业应架构模式》。 本节主要深入分析EF的分层问题,下面是本节的已列出的要探讨内容。 领域模型的概念 DbCo ...
分类:
其他好文 时间:
2020-07-18 00:49:55
阅读次数:
90
Vue触发隐藏input file的方法 1、使用input透明覆盖法 将input的z-index设置为1以上的数字并覆盖到需点击的内容上,将input的样式opacity设置为0(即为透明度为0),这样通过绑定在input上的change事件触发 推荐 <p class="uploadImg"> ...
分类:
其他好文 时间:
2020-07-17 22:28:15
阅读次数:
191