自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(47)
  • 资源 (76)
  • 收藏
  • 关注

翻译 Alternative Autocomplete UITextField

Alternative Autocomplete UITextField6:30 pm in Conclave, Presentation by Andrew WimpyFor a project I am working on, I needed to implement a search bar that would automatically complete

2013-08-13 15:49:47 2131

翻译 Auto Complete Tutorial for iOS: How To Auto Complete With Custom Values

Auto Complete Tutorial for iOS: How To Auto Complete With Custom Values By Ray Wenderlich on February 10, 2010TweetIf you're new here, you may want to subscribe to

2013-08-13 15:43:58 748

转载 IOS 4.3 autofocus input web app

http://ftlabs.github.com/fastclick/examples/focus.htmlhttp://stackoverflow.com/questions/6287478/mobile-safari-autofocus-text-fieldhttp://stackoverflow.com/search?q=ios4++web+app+input+autof

2012-12-25 10:20:52 843

转载 android 弹出键盘

InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);View view = this.getCurrentFocus();if (view != null){    imm.showSoftInput(view, 0); //显示软键盘    imm.hideSof

2012-11-27 20:26:23 736

转载 Webview html input form not showing/allowing keyboard

http://stackoverflow.com/questions/9262092/webview-html-input-form-not-showing-allowing-keyboard1down votefavoriteI need some help with showing/allowing

2012-11-26 17:00:20 4522

转载 Android WebView with https loadUrl shows blank/empty page

Android WebView with https loadUrl shows blank/empty pageSeptember 28, 2010I recently encountered this problem while trying to develop a WebView that is supported on Doughnut (1.6) and above

2012-10-10 08:19:34 3514

转载 WebView访问HTTPS空白的SslError处理(兼容2.1)

WebView访问HTTPS空白的SslError处理(兼容2.1)2012-08-09 / 技术研究 / Android /0在Android中,WebView可以用来加载http和https网页到本地应用的控件。但是在默认情况下,通过loadUrl(String url)方法,可以顺利loadUrl(“http://www.baidu.com”)之类的页面。但是,当lo

2012-10-09 18:33:48 1225

转载 判断两个对象是否相等的js函数

判断两个对象是否相等的js函数作者:袁晓平  来源:博客园  发布时间:2009-12-08 12:51  阅读:654 次  原文链接   [收藏]  如果两个对象属性在初始化时出现的顺序不一样 但数目及值一样,最终比较结果也是true支持每个属性又是其他类型,如对象、数组、数字、字符串 function equal(objA, objB){

2012-07-09 22:38:10 1740

转载 Sencha Touch 2 中 listpaging 与 pullrefresh 2个插件的使用(分页功能实现)

Sencha Touch 2 中 listpaging 与 pullrefresh 2个插件的使用(分页功能实现)plugins: [{        xclass: 'Ext.plugin.PullRefresh',        pullRefreshText: '下拉可以更新',        releaseRefreshText: '松开开始

2012-06-29 10:29:15 1708

翻译 List Pull Refresh Plugin for Sencha Touch

List Pull Refresh Plugin for Sencha Touchby Shea Frederick on January 10th, 2011One thing that you find out quickly when developing for mobile, is that mobile devices require us to be much

2012-06-29 10:22:08 1745

转载 sencha list paging plugin load more

I'm trying to use sencha touch's listpaging plugin. But there is almost no good( or bad ) documentation about how to use it and i'm confused.When i activate the plugin in my listthis.myList = ne

2012-06-29 10:19:35 2813

转载 Sencha Touch 用scroller实现滚到底部加载更多

Sencha Touch 用scroller实现滚到底部加载更多2011-09-27 16:43 by 威老, 1812 阅读, 8 评论, 收藏, 编辑需求:当list滚动到末尾的时候,自动加载更多的内容。闲言碎语:其实这个问题要解决非常简单。但首先,我相信,大家不是为了简单的copy那几行代码而来的。相信看了详细的解说,大家能够真正有所收获,能够举一

2012-06-29 10:15:42 1006

转载 sencha touch :Ext.list 使用方法

var list = new Ext.List({ id: 'myList', floating: true,//设置此属性后才可以使用 height width width: 250, height: 200, fullscreed:true,//全屏显示 dock: 'left', //显示的位置

2012-06-29 10:14:55 903

转载 xzcvx

2012-06-16 11:11:25 548

转载 sencha toolbar color test

dfgsd/* works =p */.x-toolbar{height:3em; padding:0 0.5em; overflow:hidden; position:relative; border-top:1px solid #000; background-image:-webkit-gradient(linear, 0% 0%, 0% 100%, color-

2012-05-25 14:22:46 400

原创 Sencha touch Theme 笔记

1. 安装 sass compass2. 工程根目录新建 styles 文件夹,里面创建 conifg.rb文件(内容和 compass create 创建的一样)3. 将 E:\xampp\htdocs\mail\sdk\resources\themes\templates\project\sencha-touch.scss 内容复制到 一个新建的default-theme.scss

2012-05-24 08:36:24 598

转载 Sencha Touch 2.0 MVC in 5 minutes or less

Sencha Touch 2.0 MVC in 5 minutes or less21 October 201116 CommentsI’ve shied away from JS frameworks on the mobile platform primarily due to performance. I had not been able to find one that ca

2012-05-23 12:10:12 662

原创 Sass compass

sasshttp://sass-lang.com/download.htmlNote that Sass is written in Ruby, so you’ll need Ruby installed as well. If you’re using OS X, it’s already there. Windows users can get it via the RubyIns

2012-05-23 08:26:11 680

转载 Creating Sencha Touch Toolbar Buttons

Creating Sencha Touch Toolbar Buttons15 CommentsIn this tutorial you will learn how to create different types of toolbar buttons using theSencha Touch Library. The sample application you will

2012-05-21 13:14:16 679

转载 dhtmlx touch

官方介绍:DHTMLX TouchJavaScript Mobile Framework for HTML5 Web AppsDHTMLX Touch is a free open source JavaScript library for building HTML5-based mobile web apps. It's not just a set of UI

2012-05-17 10:42:51 892

转载 Sencha touch 初体验

Sencha touch 初体验2010-11-22 10:31 HalZhang 博客园 我要评论(1) 字号:T | T本文详解一个Sencha Touch的例子。Sencha Touch是使用HTML5,CSS3和JavaScript来实现的,它可以在Android,iPhone和iPad平台上使用,也可以在其他带有HTML5兼容的Web浏览器的平台上使用。

2012-05-17 02:31:58 752

翻译 WebView开发日志 sencha touch

WebView开发日志 (2012-02-18 19:16:47)转载▼标签: 移动 android iphone ipad webview sencha2012年2月18日===============昨天在sourceforge上创建了一个新的

2012-05-17 01:42:49 1494

转载 自适应网页设计(Responsive Web Design)

自适应网页设计(Responsive Web Design)作者: 阮一峰日期: 2012年5月 1日随着3G的普及,越来越多的人使用手机上网。移动设备正超过桌面设备,成为访问互联网的最常见终端。于是,网页设计师不得不面对一个难题:如何才能在不同大小的设备上呈现同样的网页?手机的屏幕比较小,

2012-05-15 19:04:42 543

转载 推荐18个非常棒的Web和移动开发框架

推荐18个非常棒的Web和移动开发框架  如今,Web开发有了很多的辅助框架,它们可以帮助Web开发人员集中精力去实现他们头脑中的想法而不必浪费过多的时间去思考如何设计网站。当然,第一次使用这些框架或者库的时候可能并不是那么容易,不过通过阅读帮助文档和不断的实践,相信你很快就能掌握的。今天,本文收集了18个非常棒的Web和移动应用程序开发框架与大家分享。iWebKit

2012-05-15 13:20:03 838

转载 移动开发者必知10大移动Web开发框架

移动开发者必知10大移动Web开发框架作者:IT168出处:IT专家网2012-02-21 21:30开发者在创建web程序和Web移动开发时应该不断的挑战自我,开发新技术。如今,触屏时代了终结了鼠标,大多数便携式应用改变了传统的台式机产品。开发者在创建web程序和Web移动开发时应该不断的挑战自我,开发新技术。如今,触屏时代了终结了鼠标,大

2012-05-15 13:07:18 920

转载 10大优秀的移动Web应用程序开发框架推荐

10大优秀的移动Web应用程序开发框架推荐2011-11-29 16:07 佚名 cnblogs 我要评论(0) 字号:T |T在最近几年里,移动互联网高速发展、市场潜力巨大。继计算机、互联网之后,移动互联网正掀起第三次信息技术革命的浪潮,新技术、新应用不断涌现。今天这篇文章向大家推荐10大优秀的移动Web开发框架,帮助开发者更加高效的开发移动Web应用。AD:

2012-05-15 12:12:33 467

转载 图标组件 颜色 jquery mobile

图标组件另外,每一个主题包含26种不同颜色的切换(标记从a 到z),可以控制前景颜色,背景色和渐变色,典型用法是使页面元素部分替换,你可以使用data-theme属性。

2012-05-12 20:31:35 917

转载 jquery显示隐藏div

jquery显示隐藏divwww.111cn.net  2010-10-15  编辑:Crese  本文章收藏了三款jquery 实行div显示隐藏,利用了jquery很多事情做起来都方便了很多,下面我们来看看jquery显示隐藏div效果代码吧。本文章收藏了三款jquery 实行div显示隐藏,利用了jquery很多事情做起来都方便了很多,下面我们来看看jquery显

2012-05-12 16:58:17 1642

转载 jquery之超简单的div显示和隐藏特效demo

无标题文档$(document).ready( function(){});function hiden(){$("#divObj").hide();//hide()函数,实现隐藏,括号里还可以带一个时间参数(毫秒)例如hide(2000)以2000毫秒的速度隐藏,还可以带slow,fast}function slideToggle(){$("#divObj").slideTog

2012-05-12 16:51:28 1749

原创 http://www.jqmgallery.com/

http://www.jqmgallery.com/  集合http://m.ryland.comhttp://m.stanford.eduhttp://m.box.nethttp://m.disneyworld.disney.go.com/http://m.auckland2011.com/

2012-05-11 14:27:33 954

转载 利用jquery load局部刷新数据

利用jquery load局部刷新数据   发表于 : 2009-7-5 18:25:15   |   分类 : 脚本框架   |  作者 : 伊牛娃本文属于新手型的文章,也是新手写的文章,高手可以滤过,如果各位看了有什么意见,尽管提,小鸟虚心接受............. 都来拍砖吧。                    在asp.net 的ajax中有

2012-05-11 13:23:27 826

转载 关于JQueryMobile中Slider的一点研究 博客分类:

关于JQueryMobile中Slider的一点研究博客分类:移动开发框架(Titanium和Phonegap)学习和总结滑动条 Slider                给input的设置一个新的HTML5属性为type="range",可以给页面添加滑动条组件,可以指定它的value值(当前值),min和max属性的值配置滑动条。Jquery Mobi

2012-05-11 13:20:22 1634

转载 jquery mobile使用小技巧

jquery mobile使用小技巧博客分类:移动开发框架(Titanium和Phonegap)学习和总结    jquery mobile是一个好框架,虽然我没用过Sencha Touch,但据说学习成本要比jq mobile大很多,从目前web app ui框架选择少的情况来看,jq mobile是最好的选择。jquery本身已是一个成熟的框架,jq mobil

2012-05-11 13:18:42 1214

转载 jquerymobile局部渲染的各种刷新

jquerymobile局部渲染的各种刷新博客分类:移动开发框架(Titanium和Phonegap)学习和总结http://topmanopensource.iteye.com/blog/1503308    在JQueryMobile页面在第一次初始化进行一次整体渲染,动态生成的需要局部渲染。在jquerymobile实现listview局部渲染的方法:

2012-05-11 13:11:07 2565

转载 VIM 命令

index.htmlindex本文件列出了所有可用的命令插入模式insert-index启用外部编辑器展开一个插入模式的缩写普通模式normal-index

2012-05-08 00:30:40 569

原创 vimrc 备份

set nocompatible " be iMproved"filetype off " required!"=============================================================================" VIM Gernal Settings"========

2012-05-07 23:32:27 664

翻译 [Android API 学习]WebView基本使用

[Android API 学习]WebView基本使用博客分类: AndroidAndroidwebkit网络应用浏览器XML WebView是android.webkit包下的一个组件,能用来显示网页。WebView默认是不带地址栏和加载进度条的,单单是一个显示页面内容的面板。使用WebView非常简单,主要是通过load方法进

2012-05-07 17:07:40 536

转载 jquery $ 提交 onclick

js无标题文档function $(id){return document.getElementById(id);}function getvalue(obj){ var m=$(obj).value; alert(m); }

2012-05-03 08:49:17 408

转载 Is it possible to use a checkbox in a split button list instead of the gear icon?

Is it possible to use a checkbox in a split button list instead of the gear icon?http://jquerymobile.com/demos/1.0a4.1/#docs/lists/lists-split.htmlThanksjquery jquery-ui html5 jquery-mobile

2012-04-28 17:30:57 508

转载 jquery mobile 时间选择

http://forum.jquery.com/topic/mixing-jquery-mobile-with-jquery-ui-widgets-don-t

2012-04-27 10:55:54 923

W3school 全站拷贝 HTML, JS, CSS 等等

W3school.com.cn 全站拷贝备份,可以搜索,很全,很新

2012-06-19

firebug for chrome extension 1_4_0_11967.crx

firebug for chrome extension 1_4_0_11967.crx

2012-05-29

sencha example code git

sencha example code git

2012-05-24

How to Create a Sencha Touch 2 App source code

How to Create a Sencha Touch 2 App source code 1~5

2012-05-23

Sencha touch 教程

How to Create a Sencha Touch 2 App

2012-05-23

compass git clone

compass git clone compass git clone

2012-05-23

sass git clone代码

sass git clone代码https://github.com/nex3/sass

2012-05-23

Ruby installer 1.9.3 .exe new

Ruby installer 1.9.3 .exe new sass

2012-05-23

Ruby installer 1.9.3

Ruby installer 1.9.3

2012-05-23

sass for sencha

sass for sencha touch source code

2012-05-23

sencha touch 例子 list 使用 代码

A demonstration of how the list view works in Sencha Touch 2.

2012-05-23

sencha touch 例子 Tabs 和 Toolbars 使用

sencha touch 例子 Tabs 和 Toolbars 使用

2012-05-23

sencha learn Touch Theming

sencha learn-Touch-Theming

2012-05-21

Sencha+Touch+Mobile+JavaScript+Framework.pdf

Sencha+Touch+Mobile+JavaScript+Framework.pdf sencha touch 教程 316页

2012-05-21

Packtpub.Sencha.Touch.Cookbook

Packtpub.Sencha.Touch.Cookbook sencha touch 教程 文字版,一共350页

2012-05-21

SenchaSDKTools-2.0.0-beta3-windows.exe

Sencha SDK Tools-2.0.0-beta3-windows.exe

2012-05-17

Build mobile web applications with Sencha.pdf

Build mobile web applications with Sencha.pdf sencha 教程 IBM

2012-05-17

sencha-touch-2.0.1-gpl.zip

sencha-touch-2.0.1-gpl.zip

2012-05-17

jjoe64-dhtmlx-guestbook-8566b9a.zip

jjoe64-dhtmlx-guestbook-8566b9a.zip

2012-05-16

sublime-view-in-browser-5137b93.zip

sublime-view-in-browser-5137b93.zip 让Sublime Text2支持浏览器中预览 http://www.imququ.com/post/view_sublime-text-2_file_in_browser.html

2012-05-15

Developing iOS 7 Apps for iPhone and iPad ppt (1-10)

Developing iOS 7 Apps for iPhone and iPad ppt (1-10) 最新 xcode 5的 斯坦福 ios 公开课 ppt

2014-05-20

AutoCompleteTextField.zip

AutoCompleteTextField.zip 下拉列表 自动提示 自动完成

2013-08-13

autocomplete.rar

auto complete.rar ios 自动提示 下拉列表 auto complete.rar ios 自动提示 下拉列表 vauto complete.rar ios 自动提示 下拉列表 auto complete.rar ios 自动提示 下拉列表

2013-08-13

THContactPicker

ios 联系人搜索 添加 demo

2013-08-06

install-ietester-v0.5.2.exe

install-ietester-v0.5.2.exe

2013-07-29

为知笔记 为知笔记是一款基于笔记的,旨在通过知识

为知笔记是一款基于笔记的,旨在通过知识管理提高个人和团队效率的云服务产品。利用为知笔记,记录、查阅你生命中一切有价值的信息,重构你的知识,创造精彩人生。

2013-06-07

sencha touch 2.2

sencha touch 2.2

2013-04-20

Pinch-emulator-for-Sencha-Touch-master

sencha touch 缩放 demo Pinch emulator plugin for Sencha Touch Emulation of double touch pinch event for desktops. Can be useful for testing of pinch enabled components on desktop. Author: Constantine V. Smirnov, kostysh(at)gmail.com, http://mindsaur.com License: GNU GPL v3.0 Current version: 1.0 ST2 version: 2.1.0 Beta1 ST2 SDK Tools: 2.0.0 Beta 3 Requires: Sencha Touch 2.0 Versions: 1.0: New namespace, GPL license, demo app 0.2: Added visualization helpers for touches 0.1: Initial release Features: Enable pinch events on desktop Install: Place src to your app folder; Configure custom path for custom components: Ext.Loader.setPath({ 'Ext.ux': '../src/ux' }); Just add this plugin to configuration of components on which you want to test the pinch: plugins: [ { xclass: 'Ext.ux.plugin.Pinchemu' } ], Usage: CRTL + mouse TouchMove for zoom-in SHIFT + mouse TouchMove for zoom-out Live demo: http://mindsaur.com/demo/pinchemu

2013-04-18

aptana part3 eclipse插件

aptana part3 eclipse插件 共三部分 js css

2013-03-17

system images android-15.part3.rar 40mb

system images android-15.part3.rar 70mb

2013-01-24

system images android-15.part2.rar 70mb

system images android-15.part2.rar 70mb

2013-01-24

system images android-15.part1.rar 70mb

system images android-15.part1.rar 70mb

2013-01-22

android-15.part01.rar

android-15.part01.rar

2013-01-21

android-15.rar

android-15.rar android sdk 15

2013-01-04

adt-bundle-windows-x86.part06.rar

adt-bundle-windows-x86.part06.rar

2013-01-04

SogouInput_android_3.1.1_sweb.apk

tools 搜狗输入法 android SogouInput_android_3.1.1_sweb.apk

2012-08-01

Email icon

Email icon 描述>=20个字符,不支持HTML标签。

2012-07-29

ECMA Javascript 参考 文档

ECMA Javascript 参考 文档 Standard ECMA-262 ECMAScript Language Specification

2012-07-25

ToDoList Portable

ToDoList Portable _6.4.8

2012-07-15

Chromium 22

Chromium 22

2012-07-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除