实现效果,在不点击的情况下,自定滚动,点击时,停止.如下图
部分代码如下:
//调用NSTimer方法,自定计时
- (void)autoScroll {
self.timer = [NSTimer scheduledTimerWithTimeInterval:1.5 target:self
selec...
分类:
移动开发 时间:
2015-01-29 22:37:59
阅读次数:
309
============问题描述============ 大家好,小弟想做一个公告牌的Android程序,想实现如下效果:第一行(标题行)固定,其他行(详细内容)自动垂直滚动,应该怎么做呢?网上搜了相关资料,都没有这方面的完整例子网上找到一个可以垂直滚动的代码如附件AutoScroll(下载地址:h...
分类:
其他好文 时间:
2014-10-22 00:57:59
阅读次数:
279
var win = new Ext.Window({ title:'动态窗口', id:'win', height:300, autoScroll:true, layout:'column', width:400, bbar:[{xtype:'button',text:'添加面板',h...
分类:
Web程序 时间:
2014-06-25 14:35:30
阅读次数:
262
今天下午做了一个滚动浏览效果,贴在此,积累$(function(){ /* * 滚动浏览 */
$.fn.autoScroll = function(o){ o = $.extend({ speed: 20, step : 1, up : null,
down : null }, o || {})....
分类:
其他好文 时间:
2014-05-07 01:49:02
阅读次数:
234
自己写的最新版本extjs4.2的树结点的操作,记录一下,以后可能会用到。
var tree = new Ext.tree.TreePanel({
flex: 1,
animate: true,
autoScroll: true,
anchor: '100% 93%',
store: new Ext.data.TreeStore({
root:{
expanded: true...
分类:
Web程序 时间:
2014-04-27 19:00:19
阅读次数:
1278