//隐藏地址栏,移动端 window.addEventListener("load",function(){ setTimeout(scrollTo,0,0,1); },false);
分类:
Web程序 时间:
2014-08-22 12:26:16
阅读次数:
178
var container = $('.option'), scrollTo = $(".checktype").children("li").eq(highlightindex); container.scrollTop( scrollTo.offset().top - container.off...
分类:
其他好文 时间:
2014-08-13 18:11:07
阅读次数:
200
MainActivity如下:
package cc.ac;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.LinearLayout;
import ...
分类:
移动开发 时间:
2014-08-09 23:17:39
阅读次数:
437
MainActivity如下:
package cc.uu;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import andr...
分类:
移动开发 时间:
2014-08-09 23:16:49
阅读次数:
407
1.window.screen 浏览器与屏幕的距离,screenX(screenLeft),screenY(screenTop)2.window.scrollTo(x,y) 将纵向滚动条移动到相对于窗体高度为y个像素的位置,同理X, (0,0)为返回顶部,即将滚动条移动到(0,0)位置。3.w...
分类:
Web程序 时间:
2014-07-22 22:55:18
阅读次数:
234
昨天在用到ViewPager实现滑动导航的时候发现微信的导航条效果是跟随ViewPager的滑动而动的,刚开始想了一下,感觉可以使用动画实现,但是这个滑动是随手指时时变化的,貌似不可行,后来再网上搜了一下,找到一个开源代码,结果打开一看大吃一惊,这么简单的效果代码居然大概有300多行,太占手机存储空间了!后来自己干脆重写ViewGroup使用scrollTo方法实现了一下,具体实现过程如下:pac...
分类:
移动开发 时间:
2014-07-06 11:30:08
阅读次数:
234
方法scrollTo: (内容的左上角)达到某个地点scrollBy: 根据当前位置,再移动多少属性:mScrollX, 以下是文档解释The offset, in pixels, by which the content of this view is scrolled horizontally....
分类:
移动开发 时间:
2014-06-26 19:52:04
阅读次数:
252
版本:1.0 日期:2014.6.17 2014.6.18版权:© 2014 kince 转载注明出处 scrollTo() 、scrollBy()及 Scroller在视图滑动中经常使用到,比如最常见的Launcher就是用这种方式实现。为了更加明了的理解,还是去看一下源码。在View类中,scrollTo的代码如下: /**
* Set the scrolled positio...
分类:
移动开发 时间:
2014-06-22 17:38:25
阅读次数:
460
在我们操作JS实现些效果的时候,可能会涉及到滚动条滚动距离的问题;在IE和非IE下是存在兼容性问题的在IE下支持:document.body.scrollTop(scrollLeft);//在ie下获取滚动条距离的属性在非IE下支持:document.documentElement.scrollTo...
分类:
Web程序 时间:
2014-06-05 14:29:02
阅读次数:
296
jquery.scrollTo-min.js 用户返回顶部及动画到目的地,支持目标值、锚点。
使用方法:
1.引入jQuery
2.$.scrollTo( this.hash || targetValue, time);
example:$.scrollTo( this.hash || 0, 500);
jquery.scrollTo-min.js
; (functio...
分类:
Web程序 时间:
2014-06-01 10:56:16
阅读次数:
312