注意scrollView左右滑动时不要刷新数据,刚进来时一次性请求所有数据 红包纪录和房源信息可以左右滑动和点击,tableView可以上下滑动,图片部分个人信息只刷新一次. 界面布局如下 ...
分类:
移动开发 时间:
2016-11-17 18:48:34
阅读次数:
209
Remote Debugging Android Devices //在电脑上远程调试安卓设备 By Kayce Basques Technical Writer at Google By Meggin Kearney Meggin is a Tech Writer Remote debug liv ...
分类:
移动开发 时间:
2016-11-17 13:52:33
阅读次数:
433
今天继续给大家分享一些我整理好的HTML基础部分的笔记。 首先今天第一部分:跑马灯标记 <marquee></marquee> 常见属性: l direction:滚动的方向 取值 left(默认值 从右向左进行滚动)、right、up、down l behavior:滚动的方式 取值:scroll ...
分类:
Web程序 时间:
2016-11-17 00:27:12
阅读次数:
225
恢复内容开始 一.使用window中的属性时 window.属性,直接跟属性名。而调用window的函数时 window.hanshu(); 要在其函数名后面加括号。 二.window的基本属性: 1.opener:当我首次打开这个网页窗口时,则opener的属性是null。 2.open():其括 ...
1.运行效果图 2.swift 代码的实现 import UIKit class RefreshWebViewController: UIViewController,UIScrollViewDelegate,UIWebViewDelegate{ @IBOutlet weak var webView ...
分类:
移动开发 时间:
2016-11-16 19:56:32
阅读次数:
376
function getOffset( el ) { var _x = 0; var _y = 0; while( el && !isNaN( el.offsetLeft ) && !isNaN( el.offsetTop ) ) { _x += el.offsetLeft - el.scrollL ...
分类:
编程语言 时间:
2016-11-16 14:24:22
阅读次数:
149
1.uiscrollview 设置背景图片 // Setup the Scroll ViewUIScrollView*tempScrollView=(UIScrollView*)self.view;tempScrollView.contentSize=CGSizeMake(320,720); // ...
分类:
移动开发 时间:
2016-11-15 14:09:00
阅读次数:
193
#nav.fixed{ position:fixed; border:1px solid blue; top:0; } $(function(){ var navTop = $("#nav").offset().top; //alert( navTop ) $(window).scroll(func ...
分类:
其他好文 时间:
2016-11-15 00:38:04
阅读次数:
146
//首先建立一个父页面 <!doctype html> <html> <head> <title>父页面</title> <script> function tanchu(){ window.open("son.html","ziyemian","width=300,height=400,top=2 ...
一、 填空题 使用文本编辑器编辑完HTML后,扩展名可以是__html___或___htm__。 表格的标签是____table______,单元格的标签是____td______。 在编辑table表格时,合并行使用 __rowspan_____合并列使用_____colspan____。 在CS ...
分类:
Web程序 时间:
2016-11-14 20:38:44
阅读次数:
29075