我的前端工具集(八)获得html元素在页面中的位置 liuyuhang原创,未经允许禁止转载 目录 我的前端工具集 有时候需要用点击等操作,来获取某元素在页面中的位置,然后在该位置添加某些操作 如进度条,提示框,特效动画等.(bootstrap提示工具也挺好用的). 1.html代码 <div style="padding:10px"> <h2>This is a page to test Postion.</h2> <div id=&qu…
final int[] location = new int[2]; view.getLocationOnScreen(location); final int[] location = new int[2]; view.getLocationOnScreen(location); 这样就可以得到该视图在全局坐标系中的x,y值,(注意这个值是要从屏幕顶端算起,也就是索包括了通知栏的高度)//获取在当前屏幕内的绝对坐标 location[0] x坐标 location[1] y坐标 locatio…