NGUI版本: 3.5.6b1 新建立一个Scene场景2 拖入一个Contorl-Backgound到Scene中,微调,作为背景使用3 鼠标在场景中右键点击Create-->Scroll View (调整的时候,注意不要调整的是UIPanel)4 创建一个Sprite,或者快捷键Alt+Shif...
分类:
其他好文 时间:
2014-10-28 19:46:42
阅读次数:
368
1 现象:下图A处Scroll View的中心点和真正上Scroll View的中心点有偏差 原因:创建Scroll View 的时候,调整Scroll View的大小的时候,习惯性的点击边框进行了微调,实际上调整的是UIPanel 更正: 在图B处,修改Center的X,Y值分别为0,0
分类:
其他好文 时间:
2014-10-28 17:43:26
阅读次数:
201
varfoo=1;functionbar(){if(!foo){varfoo=10;}alert(foo);}bar();//解释:js没有块级作用域,if switch while等不会有块级作用域如果你对foo的值实际上为"10"而感到诧异的话,再看一下下面这个例子:vara=1;functio...
分类:
编程语言 时间:
2014-10-28 13:47:41
阅读次数:
203
float: left;margin-left: 20px;position:absolute;--屏幕缩放,底部会有滚动条white-space: nowrap;--不换行width: 800px;overflow-x: scroll;--内容超出div边距,x轴显示div滚动条height: 7...
分类:
其他好文 时间:
2014-10-28 13:46:05
阅读次数:
501
UIToolbar的基本使用 -》在UIToolbar中只能添加BarButtonItem -》BarButtonItem间距是相同的,需要使用不同间距的时候可以使用Fixed Space Bar Button Item或者Flexible Space Bar Button Item进行调节执行动画...
分类:
其他好文 时间:
2014-10-28 00:31:22
阅读次数:
171
//创建UIScrollView UIScrollView*scroll = [[UIScrollViewalloc]init]; //值UIScrollView的可视范围 scroll.frame=CGRectMake(0,0,375,667); scroll.backgroundColor= ....
分类:
其他好文 时间:
2014-10-28 00:27:03
阅读次数:
169
本文写的是视图切换,涉及到的内容有1.实现代码添加Navigation Bar Toolbal;2.实现在Navigation Bar和Toolbar上用代码添加Bar Button Item;3.UIView层面的简单动画效果先把实现结果功能截图贴出来,对应动画效果开始界面 和第一次向上翻页向上翻...
分类:
移动开发 时间:
2014-10-27 21:00:36
阅读次数:
230
1,Overflow内容溢出时的设置
overflow 水平及垂直方向内容溢出时的设置
overflow-x 水平方向内容溢出时的设置
overflow-y 垂直方向内容溢出时的设置
以上三个属性设置的值为visible、scroll、hidden、auto
visible 默认值。使用该值时,无论设置的"width"和"height"
的值是多...
分类:
Web程序 时间:
2014-10-27 17:47:32
阅读次数:
330
当页面结构设置(/admin/cms/page)如下:- Home (level=0) - About Us (level=1) - About Company Services (level=2) - Foo Bar (level=3) - Our Management Team (level=2...
分类:
其他好文 时间:
2014-10-27 16:59:50
阅读次数:
247
public class LazyBean {// public static void main(String[] args) {// DynaBean dynaBean=new LazyDynaBean();// dynaBean.set("foo", "bar");//单独// dyna...
分类:
其他好文 时间:
2014-10-27 06:53:35
阅读次数:
235