//设置滚动条 $("iframe[name='updateFocalWork']").attr("scrolling", "yes").css("overflow-y", "auto").css("overflow-x", "hidden");无法将默认scrolling为no 的iframe修改...
分类:
其他好文 时间:
2015-07-30 18:58:43
阅读次数:
149
最近项目中开始使用到ToolBar控件,其中有需求需要动态改变ToolBar中的MenuItem。如下图:1、首先想到的办法是利用ToolBar自带的方法addView()和removeView().经测试,动态添加和删除view没有点击效果,需要自己添加,而且如果需要overflow效果,则需要自...
分类:
其他好文 时间:
2015-07-30 16:44:34
阅读次数:
196
简洁的代码实现选项卡切换效果:
无标题文档
*{margin:0;padding:0}
.notice{
height:98px;
width:298px;
border:1px solid #eee;
overflow:hidden;
}
.notice-tit{
height:27px;
position:relative;
}
.notice-tit ul...
分类:
其他好文 时间:
2015-07-29 21:28:42
阅读次数:
134
jq滚动插件jquery.nicescroll+定位到底部
.row {
margin: 10px 0;
}
.row>div {
float: right;
width: 460px;
height: 280px;
margin: 0 10px;
border: solid 2px #37418b;
overflow: hidden;
}
.too-long {
widt...
分类:
Web程序 时间:
2015-07-28 21:18:10
阅读次数:
180
Divide two integers without using multiplication, division and mod operator.If it is overflow, return MAX_INT.思路:首先想到的机试不断地减去一个数直到0为止,但是这样得复杂度为O(n),只得...
分类:
其他好文 时间:
2015-07-28 15:55:30
阅读次数:
112
之前给大家介绍两种浮动闭合的办法CSS清除浮动 万能float闭合,得知很多同学都在使用下面的骨灰级解决办法: .clear{clear:both;height:0;overflow:hidden;} 上诉办法是在需要清除浮动的地方加个div.clear或者br....
分类:
其他好文 时间:
2015-07-27 19:17:25
阅读次数:
98
css方法:overflow:hidden;white-space:nowrap;text-overflow:ellipsis;js方法:function Ellipsis() { $(".overflowHidden").each(function(){ maxwidth=$(...
分类:
其他好文 时间:
2015-07-27 14:36:04
阅读次数:
123
android2.3的不支持滚动条,并且scrollTop也不支持的。(设置overflow未hidden就可以支持)。function noBarsOnTouchScreen(arg){ var elem, tx, ty; if('ontouchstart' in document.documen...
分类:
Web程序 时间:
2015-07-27 12:59:42
阅读次数:
121
Android的自动化测试框架可选择的不多,后来选了Robotium(https://code.google.com/p/robotium/),它的语法及易用性挺像我们用在iOS里的KIF。官方文档里面没有提到怎么在Android Studio里搭建它,后来在Stack Overflow找到个答案:...
分类:
移动开发 时间:
2015-07-27 10:52:53
阅读次数:
140
前面一直在寻找 MenuItem文字颜色设置。我发现API唯一的背景颜色设置。。。因此,找到下面的方法。在OverFlow看到。在onCreateOptionsMenu一下。使MenuItem产生的ItemView去改动文字颜色@Override public boolean onCreateOpt...
分类:
移动开发 时间:
2015-07-27 09:21:31
阅读次数:
161