x=0:0.1:6*pi; for step=1:2:100 s=0; for i=1:2:step s = s+1/i*sin(i*x); end plot(s);set(figure(1),'visible','off'); filename=[num2str(step, '%04d'),'.p...
分类:
其他好文 时间:
2014-07-10 13:49:02
阅读次数:
922
获取屏幕大小(Visible)Size visibleSize = Director::getInstance()->getVisibleSize();
Vec2 origin = Director::getInstance()->getVisibleOrigin();
打印调试(CCLOG)CCLOG("Characters: %c %c", 'a', 65);
CCLOG("Decimals:...
分类:
其他好文 时间:
2014-06-27 09:36:39
阅读次数:
180
1、实现放大缩略图(CSS3)通过使用overflow:visible效果仅见:http://runjs.cn/detail/exwrb9rn2.同上的效果效果仅见:http://runjs.cn/detail/dbitgkfz3.css3使得鼠标移入图片,其他图片模糊效果仅见:http://run...
分类:
Web程序 时间:
2014-06-26 20:56:13
阅读次数:
199
$("table tr:hidden") $("table tr:visible") 1 2 3 4 5 6 7 8 9 Value 110 11 12 Value 21...
分类:
其他好文 时间:
2014-06-26 16:31:56
阅读次数:
204
zepto 的selector模块是对jquery扩充选择器(jquery-selector-extensions)的部分实现。比如这样的选择方法:$('div:first')和el.is(':visible')。下面是原代码,简单的写了一些注释~;(function($){ var zepto ....
分类:
Web程序 时间:
2014-06-25 23:25:06
阅读次数:
529
文本和外观绑定器“visible”绑定该绑定主要用来让我们通过监控属性可以控制html文档的显示,只要绑定的监控属性为false、0、null或者undefined则隐藏该标签,否则显示。比如下面的示例: 1 显示了 2 3 出现吧,我的皮卡丘 4 滚粗吧,你! 5 6 7 ...
分类:
其他好文 时间:
2014-06-25 18:27:14
阅读次数:
239
overflow:visible|auto|hidden|scrolloverflow-x:横向滚动条overflow-y:纵向滚动条(2)水平滚动条 如果只想出现水平的滚动条,一般还要配合禁止换行的设置,例如:2.滚动条颜色属性: face-color:滑块颜色 hightlight-colo.....
分类:
其他好文 时间:
2014-06-25 15:42:55
阅读次数:
203
Android开发中,大部分控件都有visibility这个属性,其属性有3个分别为“visible ”、“invisible”、“gone”。主要用来设置控制控件的显示和隐藏。1) 可见(visible)XML文件:android:visibility="visible"Java代码:view.s...
分类:
移动开发 时间:
2014-06-21 07:19:08
阅读次数:
250
1、只有块级box可以collapse;2、floated box 的margins不会collapse;3、overflow (而不是visible)不会同它的子元素发生collapse;4、root element不collapse 指什么?5、If A's parent is ‘rl’:If ...
分类:
其他好文 时间:
2014-06-18 14:39:13
阅读次数:
281
判断最后一条记录是否可见gdv.IsRowVisible(gdv.RowCount - 1) == RowVisibleState.Visibleif (gdv.IsRowVisible(gdv.RowCount - 1) == RowVisibleState.Visible && e.Delta ...
分类:
其他好文 时间:
2014-06-15 19:52:25
阅读次数:
403