html, body{
margin:0;
padding:0;
}
.top{
width:100%;
height:36px;
background-color: #ff0000;
z-index:9999;
}
.bottom{
width:100%;
height: 36px;...
分类:
Web程序 时间:
2015-03-20 18:38:57
阅读次数:
180
postion方式的居中
div{
width: 200px ;
height: 200px ;
background: red ;
position: absolute ;
left: 50% ;
top: 50% ;
margin-top: -100px ;
margin-left: -10...
分类:
Web程序 时间:
2014-12-25 13:12:39
阅读次数:
134
鼠标光标属性
.one{
cursor: help ;
}
.two{
cursor: move ;
}
.three{
cursor: hand ;
}
.four{
cursor: crosshair ;
}
.five{
cursor: wait ;
}
a...
分类:
Web程序 时间:
2014-12-24 18:14:22
阅读次数:
181
伪元素
a:link{
color: green ;
font-size: 1cm ;
}
a:hover{
color: red ;
font-size: 2cm ;
}
a:active{
color: blue ;
font-size: 2cm ;
}
a:visited{
color:...
分类:
Web程序 时间:
2014-12-24 16:24:28
阅读次数:
1012
Java对图片Base64编码
package base64;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io...
分类:
编程语言 时间:
2014-10-11 15:21:55
阅读次数:
381
java代码
package base64;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
imp...
分类:
编程语言 时间:
2014-10-11 12:43:05
阅读次数:
556
1.右键项目-》属性-》java bulid path-》jre System Library-》access rules-》resolution选择accessible,下面填上** 点击确定即可!!!
2.
在MyEclipse中编写Java代码时,用到了BASE64Decoder,import sun.misc.BASE64Decoder;可是Eclipse提示:
Access re...
分类:
编程语言 时间:
2014-10-11 12:33:25
阅读次数:
230
// 数组
var arr = ["wjp", 520, 'wcc', 13.14] ;
for(var i=0; i<arr.length; i++){
alert(arr[i]);
}
// 数组为空undefined
var arr2 = ["wjp",,519+1] ;
for(var i=0; i<arr2.length; i++){
alert(ar...
分类:
编程语言 时间:
2014-09-22 00:49:41
阅读次数:
350
// Array对象
// 第一种构造方法
var arr = new Array();
alert(arr.length);
arr[0] = 520 ;
arr[1] = "wjp" ;
alert(arr.length);
// 第二种构造方法
// Array(4) ;
// 第三种构造方法
// Array(520, "wjp", 13...
分类:
编程语言 时间:
2014-09-21 23:42:01
阅读次数:
357
//Date对象
// 从字符串中分析出时间
// var dateVal = Date.parse("November 1, 1997 10:15 AM");
// var current_time = new Date(dateVal);
// 获取系统时间的各个部分
var current_time = new Date();
var strDat...
分类:
编程语言 时间:
2014-09-21 23:05:11
阅读次数:
246