vue-easytable
<iframe width="100%" height="2000px" src="http://doc.huangsw.com/vue-easytable/app.html#/install" scrolling="yes" allowfullscreen=&...
检测图片大小以及设置图片路径
function fileChange(target,id) {
var fileSize = 0;
var filetypes =[".jpg",".png",".jpeg",".gif"];
var filepath = target.value;
var filemaxsize = 1024*2;//2M
if(filepath){
var...
利用css3书写正6边形
1.倾斜正六边形
<div id="box">
<div class="con-show01 margin-left margin-top">
<div class="con-show02">
<div class="con-show03 bg04">
...
渐变边框
.gradient-block-diagonal {
width:200px;
height:40px;
margin:50px;
box-sizing:border-box;
...
关闭浏览器当前页面的方法和阻止浏览器关闭的方法
function CloseWebPage(){
if (navigator.userAgent.indexOf("MSIE") > 0) {
if (navigator.userAgent.indexOf("MSIE 6.0") > 0) { //适用于ie6不带提示关闭窗口
window.opener = null;
...