div{ height:200px; color:#F00;}.left{ float:left;
width:100px; background:#00f; _margin-right:-3px;}.right{ float:right;
width:100px; background:#0f0;...
分类:
其他好文 时间:
2014-05-26 23:51:20
阅读次数:
401
重置Bitmap大小 Bitmap bitMap =
BitmapFactory.decodeFile(path);int width = bitMap.getWidth();int height =
bitMap.getHeight();// 设置想要的大小int newWidth = 500;i...
分类:
移动开发 时间:
2014-05-26 12:07:00
阅读次数:
263
首先看一篇文章:CSS框模型:一切皆为框 — 从行框说起一 行框
看图说话上图代表了框模型中的行框。line-height
属性设置行间的距离(行高)。该属性会影响行框的布局。在应用到一个块级元素时,它定义了该元素中基线之间的最小距离而不是最大距离。line-height 与
font-size 的...
分类:
Web程序 时间:
2014-05-26 10:23:31
阅读次数:
485
发表回复: BasePath = $oBasePath ;
$oFCKeditor->Height = "500px"; // $oFCKeditor->ToolbarSet = "Basic"; ...
分类:
其他好文 时间:
2014-05-26 01:59:51
阅读次数:
252
1 tv_btn_web.measure(0, 0);//计算所需的真实宽高2
LayoutParams params=vp_btn_menu.getLayoutParams();3
params.height=tv_btn_web.getMeasur...
分类:
移动开发 时间:
2014-05-25 19:14:13
阅读次数:
335
背景图至上往下无限滚动
// 背景图中障碍物, 由tiled编辑的
m_backTileMap = CCTMXTiledMap::create("level01.tmx");
addChild(m_backTileMap, -9);
m_backTileMapHeight = m_backTileMap->getMapSize().height * m_backTileMap->getTi...
分类:
其他好文 时间:
2014-05-24 19:26:32
阅读次数:
403
function a(){ new Ext.Panel({ title: "面板用法", width:
300, height: 200, renderTo: Ext.getBody(), html: "面板主区域", ...
分类:
其他好文 时间:
2014-05-24 11:49:19
阅读次数:
275
初入前端的时候觉得CSS知道display、position、float就可以在布局上游刃有余了,随着以后工作问题层出不穷,才逐渐了解到CSS并不是几个style属性那么简单,最近看了一些关于行高的知识,就此总结一下。所谓行高是指文本行基线间的垂直距离。要想理解这句话首先得了解几个基本知识:顶线、中...
分类:
Web程序 时间:
2014-05-24 07:56:37
阅读次数:
445
上篇实例为图片浏览器是从小说阅读器直接将图片分页替换文本分页,还是双页显示。页面小阅读比较吃力,本篇拟改动几行代码,用全屏显示,看看效果如何。
#pgnumber{position:fixed;font-size:12px;left:200px;height:25px;top:10px;width:200px;z-index:1;} 原top改成10px,也就是从页脚改到页眉,可以动...
分类:
移动开发 时间:
2014-05-23 02:28:51
阅读次数:
397
注意两点
1.通过android:checkedButton="@+id/lunch"而不是item中的 android:checked="true"设置的某人被选中状态
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
a...
分类:
其他好文 时间:
2014-05-23 00:04:35
阅读次数:
344