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
屏幕分辨率基础1.术语和概念术语说明备注Screen size(屏幕尺寸)指的是手机实际的物理尺寸,比如常用的2.8英寸,3.2英寸,3.5英寸,3.7英寸摩托罗拉milestone手机是3.7英寸Aspect Ratio(宽高比率)指的是实际的物理尺寸宽高比率,分为long和nolongMiles...
分类:
移动开发 时间:
2014-07-18 23:21:30
阅读次数:
319
>>Kill the app by swiping out the screen
The RC process is killed and activity stack is cleared. And thesystem will relaunch the rc process automatically. When user launch theapp, it will show the l...
分类:
移动开发 时间:
2014-07-18 21:30:13
阅读次数:
354
DOM编程1、为什么要学习DOM(1) 通过dom编程,我们可以写出各种网页游戏(2)dom编程也是ajax的重要基础2、DOM编程介绍DOM = Document Object Model(文档对象模型)DOM是HTML与XML的应用编程接口(API)BOM和DOM相辅相成的关系BOM为纲,DOM...
分类:
编程语言 时间:
2014-07-16 21:07:21
阅读次数:
270
//1.打开窗口function WinOpen(url, heightV, widthV) { var iTop2 = (window.screen.availHeight - 20 - heightV) / 2; var iLeft2 = (window.screen.availWi...
分类:
Web程序 时间:
2014-07-16 20:04:33
阅读次数:
167
有两种方法可以激活--:修改/etc/gdm/custom.conf文件在[xdmcp]字段增加Enable=true--:通过gdmsetup图形配置工具来实现1.在LINUX桌面上选择System->Administration->Login Screen,在窗口中选中Remote标签2.点击右...
分类:
系统相关 时间:
2014-07-16 18:51:57
阅读次数:
276
题目如下:
How Big Is It?
Ian's going to California, and he has to pack his things, including hiscollection of circles. Given a set of circles, your program mustfind the smallest r...
分类:
其他好文 时间:
2014-07-16 17:17:02
阅读次数:
259
Given a number ‘n’, find the smallest number ‘p’ such that if we multiply all digits of ‘p’, we get ‘n’. The result ‘p’ should have minimum two digits...
分类:
其他好文 时间:
2014-07-16 08:55:04
阅读次数:
208
Introduction
每一个应用程序可能都需要一个“about box”和程序启动时一个“splash screen”(启动画面),大多数开发者都使用自带的““about dialog””。我创建了一个类CSplashScreen,都可以处理这两者,使开发变的容易,有趣!从小的对话框组件程序到需要加在几分复杂程序,我都会使用这个类。
这个类有两个文件组成,SplashScreen....
分类:
编程语言 时间:
2014-07-14 16:17:51
阅读次数:
397
(一)概要:
文章描述了怎样通过Visual C++ 2012或者Visual C++ .NET,为单文档或者多文档程序制作启动画面。在Microsoft Visual Studio 6.0中对于单文档程序(SDI)我们可以很方便利用微软提供的组件Visual C++ Component (Splash Screen)。因为在Microsoft Visual Studio 6.0以后的版本或者V...