弹出层效果API 属性 默认值 说明 ButId but 点击按钮Id(必选) ElementId box 弹出层Id(必选) title 提示信息 提示层标题(可选) content 自行编辑 提示层内容(可选) width 340px 提示层宽度(可选) height 120px 提示层高度.....
分类:
Web程序 时间:
2014-07-06 19:54:37
阅读次数:
143
装箱与拆箱是.NET中非常重要的概念。
装箱是将值类型转换成引用类型,或者是实现了接口的值类型。装箱将数据存储的空间由Thread stack转存到了Managed Heap中。凡是在Managed Heap中开辟空间,都将触发GC(垃圾回收),在Thread statck将不会触发垃圾回收。
拆箱就是将数据从Managed Heap中提取出来,并拷贝到Thread stack中。所以拆箱会形...
分类:
Web程序 时间:
2014-07-06 09:33:05
阅读次数:
272
var itemsPerPage = 20;
var combo;
//创建数据源store
Ext.define('recordStore', {
extend : 'Ext.data.Store',
// autoLoad : {
// start : 0,
// limit : itemsPerPage
// },
start : 0,
limit :...
分类:
Web程序 时间:
2014-07-05 10:53:34
阅读次数:
412
css相关知识:1. 使用box-shadow设置图片阴影,为照片加上阴影eg: box-shadow: 0 0 5px 3px #abc2. 使用tansform-origin定义变形原点eg: -webkit-transform-origin: 0 1px3. 使用transform变形,常用变...
分类:
Web程序 时间:
2014-07-03 20:41:28
阅读次数:
242
package Gui;/** * check box must be in a same ButtonGroup can`t be selected * at the same time * * */import javax.swing.*;import java.awt.*;public c.....
分类:
其他好文 时间:
2014-07-03 07:18:15
阅读次数:
142
2014年7月1日 15:31:17第一次写css,见谅css: 1 /*form*/ 2 /*default*/ 3 .form-box .form-group .form-label {text-align: right; width: 200px; height: 33px; line-hei...
分类:
Web程序 时间:
2014-07-03 06:33:56
阅读次数:
422
tesseract 字体训练资料篇1.制作.box档案文件.tesseract [lang].[fontname].exp[num].tif [lang].[fontname].exp[num] -l yournewlanguage batch.nochop makebox2.开始培训tessera...
分类:
其他好文 时间:
2014-07-03 00:16:10
阅读次数:
469
$(function () {$('.out').click(function () { $('#box').fadeOut('slow'); }); $('.in').click(function () { $('#box').fadeIn('slow'); }); $('.toggle')...
分类:
Web程序 时间:
2014-07-02 18:13:05
阅读次数:
231
#box{color:red;/*所有浏览器都支持*/color:red!important;/*Firefox、IE7支持*/_color:red;/*IE6支持*/*color:red;/*IE6、IE7支持*/*+color:red;/*IE7支持*/color:red\9;/*IE6、IE7、IE8支持*/color:red\0;/*IE8支持*/}
分类:
Web程序 时间:
2014-07-02 10:58:18
阅读次数:
164
css3 box-sizing属性box-sizing属性可以为三个值之一:content-box(default),border-box,padding-box。content-box,border和padding不计算入width之内padding-box,padding计算入width内bor...
分类:
Web程序 时间:
2014-07-02 10:36:59
阅读次数:
171